views:

42

answers:

2
+1  Q: 

cloud portability

may i know how portability is gae application. let say i have an application that using comet feature, task queue..etc and not using bigtable and i want to deploy on vmware/amazon will it run?

+1  A: 

No. Google App Engine and Amazon Cloud Services have different APIs.

Many of the concepts are similar; it would certainly be possible to port many applications between the two and achieve similar functionality - but you'd have to modify a lot of code. If you have a lot of data stored in one system, you'd have to write custom code to export it from that system and import it into the other, too.

dmazzoni
A: 

AppScale is designed for this kind of portability.

AppScale is a platform that allows users to deploy and host their own Google App Engine applications. It executes automatically over Amazon EC2 and Eucalyptus as well as Xen and KVM. It has been developed and is maintained by the RACELab at UC Santa Barbara. It supports both the python and java Google App Engine platforms.

Can't say for sure if it's something that will work for you but it's probably worth looking into.

Everett Toews