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
Problem description
Currently ChunkedSegmentStorage makes two calls (create followed by first write) for addition of each new chunk.
This is unnecessary. Object/Blob storage allows to create and write data in a single request we should leverage that. Problem location
ChunkedSegmentStorage::write and ChunkStorage.
Suggestions for an improvement
Provide another overload to ChunkStorage.create that takes initial data to write and writes it immediately.
The text was updated successfully, but these errors were encountered:
Problem description
Currently ChunkedSegmentStorage makes two calls (create followed by first write) for addition of each new chunk.
This is unnecessary. Object/Blob storage allows to create and write data in a single request we should leverage that.
Problem location
ChunkedSegmentStorage::write and ChunkStorage.
Suggestions for an improvement
Provide another overload to ChunkStorage.create that takes initial data to write and writes it immediately.
The text was updated successfully, but these errors were encountered: