Is there any tool to backup/restore Google Datastore entities?

前端 未结 7 1132
名媛妹妹
名媛妹妹 2021-02-07 20:04

I\'ve playing around with Google App Engine and Google Datastore for a while now and I am facing the need to take regular backups of my stuff up on the cloud.

Is there a

7条回答
  •  梦毁少年i
    2021-02-07 20:44

    Follow this tutorial for Exporting and Importing Entities: https://cloud.google.com/datastore/docs/export-import-entities

    Windows:

    set BUCKET=YOUR_BUCKET_NAME[/NAMESPACE_PATH]
    gcloud datastore export --namespaces="(default)" gs://%BUCKET%
    gcloud datastore import gs://%BUCKET%/[PATH]/[FILE].overall_export_metadata
    

    Linux:

    BUCKET="YOUR_BUCKET_NAME[/NAMESPACE_PATH]"
    gcloud datastore export --namespaces="(default)" gs://${BUCKET}
    gcloud datastore import gs://${BUCKET}/[PATH]/[FILE].overall_export_metadata
    

提交回复
热议问题