Closed ezienecker closed 1 year ago
The problem was the chunkId. Referring to the documentation of the "getId" method https://azure.github.io/azure-storage-java/com/microsoft/azure/storage/blob/BlockEntry.html it was surely because the ID probably changed size from a two digit number. After I changed this to a value that is constant in size, it worked.
Which service(blob, file, queue, table) does this issue concern?
blob
Which version of the SDK was used?
v12.22.3 and v12.23.0
What problem was encountered?
I am trying to upload a blob to the Azure portal using multipart upload. I followed this example and implemented it as follows:
However, this leads to a problem:
I have noticed the following behavior:
Is such a limit known? I could not find anything in the documentation. How can I implement multipart uploads with the Azure Storage Blob client library for Java? Since some blobs that have not exceeded this limit are already stored, I would not like to switch from block blobs to paged or append blobs.
I have also tried this sample without success.
A working instruction would be helpful.
Have you found a mitigation/solution?
No