Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public final class FileSystemConfigurations {
public static final int DEFAULT_READ_BUFFER_SIZE = 4 * ONE_MB; // 4 MB
public static final int MIN_BUFFER_SIZE = 16 * ONE_KB; // 16 KB
public static final int MAX_BUFFER_SIZE = 100 * ONE_MB; // 100 MB
public static final long MAX_AZURE_BLOCK_SIZE = 512 * 1024 * 1024L;
public static final long MAX_AZURE_BLOCK_SIZE = 256 * 1024 * 1024L; // changing default blocksize to 256 MB
public static final String AZURE_BLOCK_LOCATION_HOST_DEFAULT = "localhost";

public static final int MAX_CONCURRENT_READ_THREADS = 12;
Expand All @@ -68,4 +68,4 @@ public final class FileSystemConfigurations {
public static final boolean DEFAULT_USE_UPN = false;

private FileSystemConfigurations() {}
}
}