Does Bigquery save a timestamp with every row inserted through streaming?

google-bigquery

Solution

For now the workaround exists:

"This feature is already in the production in a different way. If user want to save a timestamp when a request reaching the BigQuery stream system, user could add a TIMESTAMP column in the table schema, and assign "AUTO" in your json payload. With "AUTO" key words, the system will set the column value to be the wall timestamp on behalf of the user. Hope this helps for your use case."

https://issuetracker.google.com/issues/72080883#comment19

Problem

I know that Hbase saves a timestamp with every insert. Is it the same in google BigQuery? How can you access it?

Original source