Skip to content

Commit

Permalink
HADOOP-19141. Vector IO: Update default values consistently (#6702)
Browse files Browse the repository at this point in the history
Contributed by Dongjoon Hyun
  • Loading branch information
dongjoon-hyun authored Apr 4, 2024
1 parent 62182b1 commit d7157b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7157b4

Please sign in to comment.