Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What format does the datastore admin backup the entities in? [duplicate]

Possible Duplicate:
options for restoring appengine datastore data?

I'd like to parse the files the datastore admin produces during the backup process.

I backup entities to the blobstore. I'd like to selectively extract some of the data from blobstore backup entities and need to be able to open the file and inspect the entities.

What format are these files stored in?

like image 662
aloo Avatar asked May 02 '12 21:05

aloo


1 Answers

According to the datastore admin source code: backup file are stored in leveldb log format.

like image 176
proppy Avatar answered Jan 01 '23 21:01

proppy