Load Pandas DF to Big Query fails
问题 Im using to following code (Based on example pandas-gbq-migration) as following: from google.cloud import bigquery import pandas import os os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "link_to_credentials.json" df = pandas.DataFrame( { 'my_string': ['a', 'b', 'c'], 'my_int64': [1, 2, 3], 'my_float64': [4.0, 5.0, 6.0], } ) client = bigquery.Client() dataset_ref = client.dataset('TMP') table_ref = dataset_ref.table('yosh_try_uload_from_client') client.load_table_from_dataframe(df, table_ref)