importing data from firestore into bigQuery

前端 未结 6 1877
死守一世寂寞
死守一世寂寞 2021-01-17 21:22

I have upgraded my account to blaze which is one of the prerequisite. I have tried to followed the FAQ Link BigQuery to Firebase. still not able to see any of the data from

6条回答
  •  北海茫月
    2021-01-17 22:19

    In case anyone need it. I ended up automating scripts because current export data option only allows stream data and preserve for 30 days.

    export data

    gcloud beta firestore export --collection-ids=users gs://mybucket/users
    

    load backup into bq

    bq load --source_format=DATASTORE_BACKUP mydataset.users gs://gs://mybucket/users/all_namespaces/kind_users/all_namespaces_kind_users.export_metadata
    

提交回复
热议问题