rnirnber
rnirnber

Reputation: 615

Google Cloud Datastore Billing

gcloud datastore export --namespaces="(default)" gs://${BUCKET}

Will google charge us for datastore read operations when we do datastore exports? We'd like to run nightly backups, but we don't want to get charged an arm and a leg.

Upvotes: 1

Views: 515

Answers (1)

Asdfg
Asdfg

Reputation: 12203

Yes. It may not be huge unless your table contains lots and lots of entities.

Refer to the table for pricing details. https://cloud.google.com/datastore/pricing

Source:

Export and import operations are charged for entity reads and writes at the rates shown in the table above. If you cancel an export or import, you will be charged for operations performed up until the time that the cancel request has propagated through Cloud Datastore.

https://cloud.google.com/datastore/pricing

Upvotes: 1

Related Questions