7
votes

I have a couple of Google App Engine versions in a project, and I use its Datastore. Each version creates a namespace on Datastore, where I have created some entities within a couple of kinds.

Now I've deleted some of the versions, and I want to delete their stuff on Datastore. I've deleted the entities, then the referred kinds had disappeared, but I can't find a way to delete the namespaces.

How can I delete a namespace in Google Cloud Datastore?

1

1 Answers

12
votes

Each namespace stores a set of system kinds eg. statistics: https://cloud.google.com/datastore/docs/concepts/stats Those are reculculated every 48h, and deleted if there are no more user data in that namespace. At that time namespace should disappear from your Datastore as well.