Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Limit on bigquery insert api

We are using bigquery streaming api for inserting data into bigquery. We found that in google big query documentation they have mentioned that throttling limit on google big query api is 10 / sec. Is this applied to insert api as well ?

like image 788
pankajmi Avatar asked Mar 23 '26 14:03

pankajmi


1 Answers

The TableData.insertAll() method quota is 10,000 requests per second per table (see https://developers.google.com/bigquery/quota-policy#streaminginserts). If that isn't sufficient, a link for requesting more is on that quota page.

like image 91
Jordan Tigani Avatar answered Mar 25 '26 21:03

Jordan Tigani