I am using the Simba Jdbc driver version 1.2.2.1004 to sequentially insert 6 rows of data into a BigQuery table. The table only has 3 columns. After 4 inserts I see:
Caused by: com.simba.googlebigquery.support.exceptions.GeneralException: [Simba]BigQueryJDBCDriver Error executing query job. Message: Exceeded rate limits: too many table update operations for this table. For more information, see https://cloud.google.com/bigquery/troubleshooting-errors
I've looked at the quotas on the google side but none of them seems to be reached. If I throttle the inserts, all the rows get inserted so it's not a day limit, it seems to be the number of inserts per second, but that should be at least 10 according to my quota...
I have also created a test class that insrts the same values using the google api, that works just fine..