created: 2019-11-12T09:56:11.000Z
firestoreからbigqueryへのexport手順
gcsを介して行う
export from firestore
gcloud beta firestore export \
  gs://[BUCKET_NAME] \
  --collection-ids=[COLLECTION_ID_1],[COLLECTION_ID_2]
import to bigquery
bq --location=[LOCATION] load \
  --source_format=[FORMAT] \
  [DATASET].[TABLE] \
  [PATH_TO_SOURCE]
