Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bigquery] Increase Storage Write API max request size #741

Merged
merged 2 commits into from
Jun 18, 2024

Conversation

nathan-artie
Copy link
Contributor

@nathan-artie nathan-artie commented Jun 18, 2024

Also kill batchSize config.

@nathan-artie nathan-artie marked this pull request as ready for review June 18, 2024 05:03
// Storage Write API is limited to 10 MB, let's start out conservative and use 80% of that.
maxRequestByteSize = 10_000_000 * .8
// Storage Write API is limited to 10 MiB, subtract 50 KiB to account for request overhead.
maxRequestByteSize = (10 * 1024 * 1024) - (50 * 1024)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is 50 kb fixed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After a bunch of testing the cutoff seemed to be around 30 KiB so I decided to go with 50 KiB to be safe.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested it it with a pretty wide table so I think it should be fine, but if we do see errors we can increase it to 100 KiB or higher.

@@ -223,7 +222,6 @@ func (s *Store) Dedupe(tableID sql.TableIdentifier, primaryKeys []string, includ
}

func LoadBigQuery(cfg config.Config, _store *db.Store) (*Store, error) {
cfg.BigQuery.LoadDefaultValues()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

@Tang8330
Copy link
Contributor

Tang8330 commented Jun 18, 2024 via email

@nathan-artie nathan-artie merged commit 39f9479 into master Jun 18, 2024
1 check passed
@nathan-artie nathan-artie deleted the nv/increase-max-request-byte-size branch June 18, 2024 05:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants