I am needing to update values in a table. The table is not partitioned. New inserts are being regularly (10s to 100s per hour) streamed to the table. This results in the constant presence of a streaming buffer for this table, yielding the following message when updates are attempted:
UPDATE or DELETE statement over table
<project.dataset.table>
... would affect rows in the streaming buffer, which is not supported
None of the rows I am attempting to update are new and thus do not affect those inserts in the streaming buffer. Is there any way to successfully complete this update?