You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could add a synchronize=False mode (referring to syncing data to disk) for incremental writes that defers writing headers until a write occurs with synchronize=True or the file is finalized. For cases like uploading to a temporary file before uploading to S3, writing headers can always be deferred, and this could be better for performance whenever constant synchronization isn't needed since it can guarantee a single write for that entire section, and (potentially) allow less fiddling with encryption information in the header section from having to repeatedly edit data in it (like MACs).
The text was updated successfully, but these errors were encountered:
From @Eta0 in #127 (review)
We could add a
synchronize=False
mode (referring to syncing data to disk) for incremental writes that defers writing headers until a write occurs withsynchronize=True
or the file is finalized. For cases like uploading to a temporary file before uploading to S3, writing headers can always be deferred, and this could be better for performance whenever constant synchronization isn't needed since it can guarantee a single write for that entire section, and (potentially) allow less fiddling with encryption information in the header section from having to repeatedly edit data in it (like MACs).The text was updated successfully, but these errors were encountered: