Skip to content

Commit

Permalink
250
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang8330 committed Jun 27, 2024
1 parent a8f01d1 commit 215f5e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/bigquery/bigquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 215f5e2

Please sign in to comment.