可能的原因:
解决方案:
from google.cloud import bigquery
client = bigquery.Client()
# Set the fully-qualified ID for the table
table_id = 'your-project.your_dataset.your_table'
# Reload the table from the source
table = client.get_table(table_id)
# Or, fetch the updated metadata for a single table
table = client.get_table(table)
通过这种方式,您可以强制更新缓存并获取最新版本的表格元数据。
上一篇:BigQuery表格创建选项
下一篇:Bigquery表格数据性能问题