-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.
Description
pyarrow-0.14.0
pandas '0.24.2'
windows 10
Hi,
I am tring to load dataframe to big query that looks like that
uid_first agg_col
1001 [{'page_type': 1}, {'record_type': 1}, {'non_consectutive_home': 0}]
the agg_col is list of dicts
I also tried dict
Schema config:
schema = [
bigquery.SchemaField("uid_first","STRING",mode="NULLABLE"),
bigquery.SchemaField("agg_col","RECORD",mode="NULLABLE",fields=[
bigquery.SchemaField("page_type", "INTEGER", mode="NULLABLE"),
bigquery.SchemaField("record_type", "INTEGER", mode="NULLABLE"),
bigquery.SchemaField("non_consectutive_home", "INTEGER", mode="NULLABLE")])]
load command
dataset_ref = client.dataset('dataset')
table_ref = dataset_ref.table('table')
table = bigquery.Table(table_ref,schema=schema)
table = client.load_table_from_dataframe(dff, table).result()
The error message
Traceback (most recent call last):
File "<ipython-input-167-60a73e366976>", line 4, in <module>
table = client.load_table_from_dataframe(dff, table).result()
File "C:\ProgramData\Anaconda3\envs\p37\lib\site-packages\google\cloud\bigquery\client.py", line 1546, in load_table_from_dataframe
os.remove(tmppath)
FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C:\\Users\\ADMINI~1\\AppData\\Local\\Temp\\tmpcxotr6mb_job_5c94b06f.parquet'
Metadata
Metadata
Assignees
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.