Can one write a hybrid Go-Python/Java application and run it on Google App Engine as one application, or do they need to be split into two apps and communicate with each other through HTTP calls? Is there any tutorial or example on something like this being done?

link|improve this question

Why would you want to do this? It's a recipe for a lot of communication overhead, deployment trouble, and extra effort in general. – Nick Johnson Jan 16 at 3:27
@NickJohnson - Go is still experimental, so some functionality is not available in it yet. If it wasn't for that, I'd go with pure Go. – ThePiachu Jan 16 at 10:07
@ThePiachu If you need features not available in Go, your best option for now is probably to not use Go. – Nick Johnson Jan 16 at 10:18
feedback

1 Answer

up vote 4 down vote accepted

You can deploy several "versions" of the same application at once. Each version will be accessible using a fully qualified URL, and they can all be in different languages.

link|improve this answer
1  
Why use versions for this? Why not go with two different apps? whats the advantage of use versions over different apps? – Shay Erlichmen Jan 13 at 7:45
3  
Two different apps cannot share a datastore. – Thilo Jan 13 at 9:13
1  
And I think it's against the GAE Terms of Service to use several apps working together as a single app, see Section 4.3e of the TOS: code.google.com/appengine/terms.html – Ibrahim Arief Jan 13 at 9:21
@Arief or otherwise access the Service in a manner intended to avoid incurring fees since having two versions running at the same time will not give you double free quote I thinks its ok. A nightmare to manage but doable. – Shay Erlichmen Jan 13 at 11:45
@ShayErlichmen: Yes, that section also covers any other attempt to exploit the free quota, and I think what the asker had in mind (two separate apps that communicate with each other) could unintentionally give him/her double free quota and thus break the TOS on that particular section. Especially since the alternative of deploying the "hybrid" app as different versions exists. – Ibrahim Arief Jan 13 at 13:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.