How to skip rows of csv file in BIGQUERY load API

前端 未结 1 1530
余生分开走
余生分开走 2021-01-21 02:39

I am trying to load CSV data from cloud storage bucket to BigQuery table using BigQuery API My Code is :

def load_data_from_gcs(dataset_name, table_name, source)         


        
相关标签:
1条回答
  • 2021-01-21 03:11

    You're spelling it wrong (using camelcase instead of underscores). It's skip_leading_rows, not skipLeadingRows. Same for field_delimiter and source_format.

    Check out the Python sources here.

    0 讨论(0)
提交回复
热议问题