ierandra commented on code in PR #1861:
URL: https://github.com/apache/jackrabbit-oak/pull/1861#discussion_r1865750275
##########
oak-blob-cloud-azure/src/main/java/org/apache/jackrabbit/oak/blob/cloud/azure/blobstorage/AzureBlobStoreBackend.java:
##########
@@ -324,46 +299,28 @@ public void write(DataIdentifier identifier, File file)
throws DataStoreExceptio
long len = file.length();
LOG.debug("Blob write started. identifier={} length={}", key, len);
- CloudBlockBlob blob =
getAzureContainer().getBlockBlobReference(key);
+ BlockBlobClient blob =
getAzureContainer().getBlobClient(key).getBlockBlobClient();
if (!blob.exists()) {
addLastModified(blob);
-
- BlobRequestOptions options = new BlobRequestOptions();
- options.setConcurrentRequestCount(concurrentRequestCount);
Review Comment:
you removed this and didn't replaced in azure sdk 12. you can use
`ParallelTransferOptions` and `BlockBlobClient.uploadWithResponse`
--
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]