Questions tagged [datastore-admin]

Datastore Administration is an experimental, innovative, and rapidly changing new feature for Google App Engine.

12 questions
3
votes
2 answers

Where can I find Protobuf definitions for Datastore Admin v1 API?

I'm trying to use the Datastore Admin API v1 that was recently announced GA and wanted to wonder where can I find protobufs for the related API? I have found some protobufs within the googleapis repository, but there are only protobufs for the…
3
votes
1 answer

App Engine Datastore: Can I restore entities of a specific namespace from a full backup?

I created a backup of all entities of all namespaces using Google Cloud Datastore Admin. I would like to ask if can I restore entities only on a namespace. Example: I have 3 namespaces Namespace_1 Namespace_2 Namespace_3 All namespaces contain the…
2
votes
1 answer

App Engine: How to Import Datastore locally

So, the Cloud Datastore Admin tools are being deprecated in favor of the Managed Export Import Service. I have like 5 gigs of data in my remote Datastore, and I'd like to be able to import it locally for development and do it in a way that is…
2
votes
1 answer

Deleted entities keep returning using datastore admin

I am trying to copy the datastore from one app to another (live to dev server). I first need to delete all the entities on the dev server (the actual dev app I'm using, not to be confused with the local dev server). I am doing so in the datastore…
2
votes
2 answers

AppEngine Datastore Admin: cannot backup to cloudstore

I am trying to backup some entities from my Java app to cloudstore via the Datastore Admin and running into some issues. I enabled Datastore Admin and added the google service account id of my app (my_app_id@appspot.gserviceaccount.com) to the cloud…
JohnIdol
  • 48,899
  • 61
  • 158
  • 242
1
vote
1 answer

AppEngine datastore backup mapreduce failures

I have setup a cron to backup a single kind i.e. only one Entity from the datastore using backup.create. However the backup stalls with Transaction collision errors. What do these errors mean ? I notice these errors occur with very old records in…
1
vote
0 answers

Google App Engine - Datastore Admin Not Working

I am simply trying to access the datastore admin for myapp at: https://appengine.google.com/datastore/admin?&app_id=s~placingliterature&version_id=jan2015.383591079272347357 But when I go there, the main portion of the screen is blank, although all…
1
vote
1 answer

Google App Engine Datastore Admin is disabled due to application hidden by an alias

Recently I migrated my application to the High-Replication datastore using the migration tool. The Datastore Admin page now isnt diplaying correctly: Error: Server Error The server encountered an error and could not complete your request. If the…
0
votes
1 answer

Modify Datastore Admin Backup Built-in Task Queue

I'm new to Datastore. Currently, I'm using datastore admin to backup my data but I'm wondering if we can modify or override the built-in task queue on datastore admin /_ah/datastore_admin/backup.create? What I want to do when exporting the data from…
0
votes
2 answers

How to retrieve a child Entity from a cloud datastore without passing a parent key in nodejs

I have a 2 kinds of entity; Parent Child In the above kinds of entity, a Child is associated with a parent key. I need to filter for a child based only on a child key as I dont have the parent key, only the child key/id. const query =…
0
votes
1 answer

GAE datastore admin page is blank

I have an app in GAE and since ever the DataStore Admin link, on the left, gives me a blank page. I noticed this is a bug because when checking, recently, DataStore Admin link, for another app, it properly shows a web page. Expected: After enabling…
Marcio S Galli
  • 383
  • 2
  • 5
0
votes
1 answer

GAE datastore admin copy failing on MapReduce model to JSON conversion

I am trying to copy my app's datastore to another app using the datastore admin console, according to this documentation. Since my app uses the Java runtime, I installed the datastore admin Python sample as instructed. I setup the app to whitelist…