Partitioning/Clustering with BigQuery Loader

Regarding the clustering, you can enable the clustering after you’ve created the table. Here is the command you can use in your cli.

bq update --clustering_fields=${CLUSTERING_FIELD} ${DATASET}.${TABLE}
2 Likes