diff --git a/clients/bigquery/bigquery.go b/clients/bigquery/bigquery.go index 7316d637f..d3c9f5029 100644 --- a/clients/bigquery/bigquery.go +++ b/clients/bigquery/bigquery.go @@ -34,8 +34,8 @@ const ( describeNameCol = "column_name" describeTypeCol = "data_type" describeCommentCol = "description" - // Storage Write API is limited to 10 MiB, subtract 150 KiB to account for request overhead. - maxRequestByteSize = (10 * 1024 * 1024) - (150 * 1024) + // Storage Write API is limited to 10 MiB, subtract 250 KiB to account for request overhead. + maxRequestByteSize = (10 * 1024 * 1024) - (250 * 1024) ) type Store struct {