HADOOP-19141. Vector IO: Update default values consistently (#6702)

Contributed by Dongjoon Hyun
This commit is contained in:
Dongjoon Hyun 2024-04-04 02:56:40 -07:00 committed by GitHub
parent 62182b1f74
commit d7157b4aa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1423,12 +1423,12 @@ private Constants() {
/**
* Default minimum seek in bytes during vectored reads : {@value}.
*/
public static final int DEFAULT_AWS_S3_VECTOR_READS_MIN_SEEK_SIZE = 4896; // 4K
public static final int DEFAULT_AWS_S3_VECTOR_READS_MIN_SEEK_SIZE = 4096; // 4K
/**
* Default maximum read size in bytes during vectored reads : {@value}.
*/
public static final int DEFAULT_AWS_S3_VECTOR_READS_MAX_MERGED_READ_SIZE = 1253376; //1M
public static final int DEFAULT_AWS_S3_VECTOR_READS_MAX_MERGED_READ_SIZE = 1048576; //1M
/**
* Maximum number of range reads a single input stream can have