Open
Description
I'm trying to perform a multipart upload of a file that is 5.5 GB large, with a memory of around 4 GB.
In line 42 of the code, we have to create a slice of bytes (buffer := make([]byte, size
). So in my case, I'd be creating a buffer whose size is 5.5 GB, which is breaking the code since it's running out of memory.
Is there a workaround you might suggest to solve this problem?
Update: The solution I'd be ideally looking for is
1- Being able to make my slice of bytes in chunks, and then somehow glue things together with the multipart upload
2- Being able to store my slice of bytes in storage rather than RAM.
Metadata
Metadata
Assignees
Labels
No labels