Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Jun 17, 2024
1 parent e767433 commit f39c3a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clients/bigquery/bigquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ const (
describeNameCol = "column_name"
describeTypeCol = "data_type"
describeCommentCol = "description"
maxRequestByteSize = 10_000_000 * .8 // Storage Write API is limited to 10 MB
// Storage Write API is limited to 10 MB, let's start out conservative and use 80% of that.
maxRequestByteSize = 10_000_000 * .8
)

type Store struct {
Expand Down

0 comments on commit f39c3a8

Please sign in to comment.