Croway opened a new pull request, #20733:
URL: https://github.com/apache/camel/pull/20733
…BlockBlobFromFile
add `uploadBlockBlobFromFile` operation, recommended for uploading large
files (larger than 256MB) as it uses chunked parallel uploads for memory
efficiency.
```
from("file://data?noop=true")
.log("Uploading file: ${header.CamelFileName}")
.to("azure-storage-blob://camelazure/container1" +
"?blobName=${header.CamelFileName}" +
"&operation=uploadBlockBlobFromFile" +
"&blockSize=52428800" + // 50MB blocks
"&maxConcurrency=4" + // 4 parallel uploads
"&serviceClient=#client")
.log("Upload completed: ${header.CamelFileName}");
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]