poiuytrez
poiuytrez

Reputation: 22518

Export from BigQuery to Google Cloud Datastore

Is there a trick to export Google BigQuery data to Google Cloud Datastore? I can read that the other way around is possible.

Upvotes: 4

Views: 639

Answers (1)

shollyman
shollyman

Reputation: 4384

There's no native functionality to create entities in datastore from query results. You can certainly write code using the API libraries that walks some BQ results and performs datastore inserts, however.

Upvotes: 2

Related Questions