Reputation: 395
I want to load large size data, in google cloud bigQuery.
What are all the options at my hand (using UI and APIs) and what would be the fastest way?
TIA!
Upvotes: 1
Views: 1356
Reputation: 208042
You can load data:
Loading data into BigQuery from Google Drive is not currently supported, but you can query data in Google Drive using an external table.
You can load data into a new table or partition, you can append data to an existing table or partition, or you can overwrite a table or partition. For more information on working with partitions, see Managing Partitioned Tables.
When you load data into BigQuery, you can supply the table or partition schema, or for supported data formats, you can use schema auto-detection.
Each method is fast, if your data is large, you should go with the Google Cloud Storage.
When you load data from Google Cloud Storage into BigQuery, your data can be in any of the following formats:
Upvotes: 3