JCLOUDS-1223: Use larger block blobs for Azure

This raises the maximum multipart size from 195 GB to 4.77 TB.
Reference:

https://azure.microsoft.com/en-us/blog/general-availability-larger-block-blobs-in-azure-storage/
This commit is contained in:
Andrew Gaul 2017-01-08 12:50:16 -08:00
parent a5ec80a275
commit f8025790bf
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ public class AzureBlobStore extends BaseBlobStore {
@Override
public long getMaximumMultipartPartSize() {
return 4 * 1024 * 1024;
return 100 * 1024 * 1024;
}
@Override