Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nbali committed Aug 30, 2022
1 parent 2eacbd4 commit 158d329
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class BatchLoads<DestinationT, ElementT>
static final int FILE_TRIGGERING_RECORD_COUNT = 500000;
// If user triggering is supplied, we will trigger the file write after this many bytes are
// written.
static final int FILE_TRIGGERING_BYTE_COUNT = 100 * (1L << 20) // 100MiB
static final long FILE_TRIGGERING_BYTE_COUNT = 100 * (1L << 20); // 100MiB

// If using auto-sharding for unbounded data, we batch the records before triggering file write
// to avoid generating too many small files.
Expand Down

0 comments on commit 158d329

Please sign in to comment.