Replies: 1 comment
-
If you're uploading files using multipart file uploads then the streaming will be handled for you. If you're uploading raw binary content then use a generator which iteratively returns the data in 10MB sized chunks. Is this a sufficiently helpful answer? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm attempting to implement asynchronous chunked uploading for handling file upload tasks. Specifically, I need to break a file into 10MB-sized chunks and wish to upload these chunks to the target server in a streaming fashion for improved efficiency and performance. I've gone through some documentation, but I'm still unclear on how to implement this feature. Could someone provide some guidance or sample code to help me get started with asynchronous chunked streaming upload? Your assistance would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions