paradox
paradox

Reputation: 153

Querying the firestore database from bigquery

Is there any way to query the firestore database from bigquery without exporting the firestore data into bigquery

Upvotes: 0

Views: 870

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599621

BigQuery can only query data that is stored in BigQuery itself. It cannot query data directly in Cloud Firestore.

You will have to import the data from Cloud Firestore into BigQuery in order to be able to query it with BigQuery.

Upvotes: 1

Related Questions