Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google appengine datastore alternative?

I'm using Google AppEngine with build-in datastore. But, I want move all datastore to my new VPS.

I'll use Apache Cassandra. How to move from GAE Datastore to Apache Cassandra?

like image 510
bt102 Avatar asked Jun 07 '10 12:06

bt102


People also ask

What type of service is App Engine?

Google App Engine (GAE) is a platform-as-a-service product that provides web app developers and enterprises with access to Google's scalable hosting and tier 1 internet service.

Is NoSQL a GCS?

Google Cloud Datastore (Cloud Datastore) is a highly scalable, fully managed NoSQL database service offered by Google on the Google Cloud Platform. Cloud Datastore is built upon Google's Bigtable and Megastore technology.

Which of the following is the new version of Google Cloud Datastore that has certain improvements over the existing one?

Firestore is the newest version of Datastore and introduces several improvements over Datastore. Existing Datastore users can access these improvements by creating a new Firestore in Datastore mode database instance.

What type of database is Google Datastore?

Datastore is a highly scalable NoSQL database for your web and mobile applications.


1 Answers

My guess is you're looking at a tool such as the bulk loader/downloader:

http://code.google.com/appengine/docs/python/tools/uploadingdata.html

You'll want to export all your data into CSV, then write a script to import this into any new format you want.

like image 109
Ikai Lan Avatar answered Oct 02 '22 07:10

Ikai Lan