Verify resumable upload logic #6504
-
Hi,
Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That was a mistake, and should not appear in newer versions. If it does, let me know where.
That is more efficient, but the client library does that for you.
I do not believe there is a guarantee that the full data is committed or not, that is, the client library may successfully transmit 512KiB, and then get told that only 256KiB got written. If something like that happens, the client library will resend the remaining 256KiB until it succeeds or the retry policy is exhausted.
I do not know what is your intent, but calling Note, however, that the library will return an error only after multiple retries. You control how many retries (by setting the
If you do a
Yes. |
Beta Was this translation helpful? Give feedback.
That was a mistake, and should not appear in newer versions. If it does, let me know where.
That is more efficient, but the client library does that for you.
I do not believe there is a guarantee that the full data is committed or not, that is, the client library may successfully transmit 512KiB, and then get told that only 256KiB got written. If something lik…