-
Notifications
You must be signed in to change notification settings - Fork 2
Home
bdbdatastore is an alternate datastore backend for App Engine apps. It’s far more robust and scalable than the one the development server uses, but not as big and hard to install as HBase and HyperTable based backends.
bdbdatastore is intended primarially for use by people who want to host their own App Engine apps, and don’t expect datastore load for a single app to exceed what a single server can handle. In the event your app gets too big for bdbdatastore, the migration path to an alternate backend is smooth.
bdbdatastore is currently alpha quality. The server runs, and answers queries over a simple protocol-buffer based RPC interface. All of the basic datastore RPCs are implemented except a few miscellaneous bookkeeping ones.
A basic Python stub for communicating with the server is already available, but it has no error handling. An interactive Python console for testing out the datastore server is likewise available.