在BigQuery中,如果表的模式与加载数据时提供的数据的模式不匹配,就会出现“BigQuery表的模式与配方不匹配”的错误。
解决此问题的方法是确保数据的模式与表的模式匹配。以下是一些解决方法的代码示例:
WRITE_APPEND
选项来将数据追加到现有表中,并自动匹配模式。from google.cloud import bigquery
client = bigquery.Client()
table_ref = client.dataset('dataset_name').table('table_name')
job_config = bigquery.LoadJobConfig(write_disposition='WRITE_APPEND')
with open('data.json', 'rb') as source_file:
job = client.load_table_from_file(source_file, table_ref, job_config=job_config)
job.result()
WRITE_TRUNCATE
选项来覆盖现有表中的数据,并自动匹配模式。from google.cloud import bigquery
client = bigquery.Client()
table_ref = client.dataset('dataset_name').table('table_name')
job_config = bigquery.LoadJobConfig(write_disposition='WRITE_TRUNCATE')
with open('data.json', 'rb') as source_file:
job = client.load_table_from_file(source_file, table_ref, job_config=job_config)
job.result()
schema
参数手动指定模式。from google.cloud import bigquery
client = bigquery.Client()
table_ref = client.dataset('dataset_name').table('table_name')
job_config = bigquery.LoadJobConfig(write_disposition='WRITE_APPEND', schema=[
bigquery.SchemaField('column1', 'STRING'),
bigquery.SchemaField('column2', 'INTEGER'),
bigquery.SchemaField('column3', 'FLOAT')
])
with open('data.json', 'rb') as source_file:
job = client.load_table_from_file(source_file, table_ref, job_config=job_config)
job.result()
上述代码示例中,dataset_name
和table_name
应替换为实际的数据集和表名称。data.json
是包含要加载到表中的数据的文件。
通过采取适当的措施来确保数据的模式与表的模式匹配,您可以解决“BigQuery表的模式与配方不匹配”的问题。