Sagar Karira
Sagar Karira

Reputation: 679

Does transferring data from one table to another in google bigquery goes through streaming buffer?

When using the insert stream API of GBQ, the data follows the lifecycle as shown below in the image.

But what about the case when you are moving some data from an existing table and inserting into another. Will that cause the new table data to first go through Streaming Buffer or it is instantly available in Columnar Storage.

Lifecycle of a BigQuery streaming insert

Upvotes: 0

Views: 129

Answers (1)

Elliott Brossard
Elliott Brossard

Reputation: 33705

Copying a table only affects managed storage. It doesn't go through the streaming buffer.

Upvotes: 2

Related Questions