user1965449
user1965449

Reputation: 2931

BigQuery INSERT DML statement limitation

I am looking at BigQuery dcumentation here https://cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-language ,and I found that the limit on INSERT and UPDATE is 1000 operations /day / table .

Is this limit only effective when you are using the WebUI for BigQuery or is it also a limit when using the streaming API to insert thousands of queries / second ?

Or is the documentation out of date ?

Upvotes: 0

Views: 792

Answers (1)

Graham Polley
Graham Polley

Reputation: 14781

This is the restriction on using DML (INSERT, UPDATE & DELETE) in your SQL queries (web UI or via API).

This is seperate to the streaming limits which are listed here.

Upvotes: 2

Related Questions