https://qiita.com/itkr/items/20aa3e408ab3b83d54af
当サイトにならってやってみましたが、以下のエラーが出てしまいます。
なにかお気づきな点ありましたらご教示いただけませんでしょうか?
error
1Error while reading data, error message: CSV table encountered too many errors, giving up. Rows: 1; errors: 1. Please look into the errors[] collection for more details. 2Error while reading data, error message: Too many values in row starting at position: 191.
下記のようなBQのスキーマです。
data_extract_date DATE NULLABLE s_id STRING NULLABLE ss_id STRING NULLABLE s_gtz STRING NULLABLE gtz_set_date DATE NULLABLE test_id INTEGER NULLABLE test_name STRING NULLABLE a_id STRING NULLABLE a_name STRING NULLABLE s_type STRING NULLABLE k STRING NULLABLE ka STRING NULLABLE d_dai STRING NULLABLE d_chu STRING NULLABLE t_syo STRING NULLABLE m_no INTEGER NULLABLE k_result BOOLEAN NULLABLE answer_day DATE NULLABLE
python
1 with open(path_schema_info, 'r') as f: 2 table_schema = json.load(f) 3 4 if not client.check_dataset(dataset): 5 raise Exception 6 7 if not client.check_table(dataset, table_name): 8 client.create_table(dataset, table_name, table_schema) 9 10 path_csv_file = ["gs://" + bucket_name + "/" + csv_file_name] 11 client.import_data_from_uris(path_csv_file, dataset, table_name, field_delimiter='\t', source_format=JOB_SOURCE_FORMAT_CSV, skip_leading_rows=1)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/03/09 03:19
2019/03/09 07:22
2019/03/11 00:56
2019/03/11 01:26
2019/03/11 10:17