nbali commented on code in PR #22953: URL: https://github.com/apache/beam/pull/22953#discussion_r964180547
########## sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BatchLoads.java: ########## @@ -113,6 +113,9 @@ // If user triggering is supplied, we will trigger the file write after this many records are // written. 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 long FILE_TRIGGERING_BYTE_COUNT = 100 * (1L << 20); // 100MiB Review Comment: done in [`bcd4ba9` (#22953)](https://github.com/apache/beam/pull/22953/commits/bcd4ba912a224aaba31be71b5eade04a2219de09) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
