We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d295fb7 commit c7c0165Copy full SHA for c7c0165
vortex-io/src/object_store.rs
@@ -102,10 +102,10 @@ impl VortexWrite for ObjectStoreWriter {
102
async fn write_all<B: IoBuf>(&mut self, buffer: B) -> io::Result<B> {
103
let slice = buffer.as_slice();
104
105
- const CHUNKS_SIZE: usize = 25 * 1024 * 1204;
+ const CHUNKS_SIZE: usize = 25 * 1024 * 1024;
106
107
- for (chunk_idx, chunk) in slice.chunks(25 * 1024 * 1024).enumerate() {
108
- let payload = Bytes::copy_from_slice(&slice[chunk_idx * CHUNKS_SIZE..][..chunk.len()]);
+ for chunk in slice.chunks(CHUNKS_SIZE) {
+ let payload = Bytes::copy_from_slice(chunk);
109
self.upload
110
.as_mut()
111
.put_part(PutPayload::from_bytes(payload))
0 commit comments