[google-appengine] Can I run an AppEngine app with mixed Java and Go runtimes?

2014-05-01 Thread Ronoaldo Pereira
I'm porting the front-end handlers of a large Java app to Go. However, I'm 
not able to run the Java and Go runtimes in paralell in the development 
server, to share the same datastore backend.

Is there a way to acomplish that? I'm asking here because I noticed some 
Java code to launch instances from devappserver2 module in the Python SDK. 
I tought that it may be possible to run both a Java module and a Go module 
with that service, if I was using the Java Yaml configuration.

Kind regards,

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Can I run an AppEngine app with mixed Java and Go runtimes?

2014-05-02 Thread Vinny P
On Thu, May 1, 2014 at 1:32 PM, Ronoaldo Pereira  wrote:

> I'm porting the front-end handlers of a large Java app to Go. However, I'm
> not able to run the Java and Go runtimes in paralell in the development
> server, to share the same datastore backend.
>
> Is there a way to acomplish that? I'm asking here because I noticed some
> Java code to launch instances from devappserver2 module in the Python SDK.
> I tought that it may be possible to run both a Java module and a Go module
> with that service, if I was using the Java Yaml configuration.
>



Yes you can, but you have to upload the Java and Go versions separately as
different versions within the same application ID. Then you can use App
Engine services (task queue, datastore, etc) to communicate between each
version.


-
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Can I run an AppEngine app with mixed Java and Go runtimes?

2014-05-05 Thread Diego Duclos
Wouldn't having a module in java and the other in go be a much better
option then hacking this with versions ? This really isn't the intended
usage of versions


On Sat, May 3, 2014 at 7:21 AM, Vinny P  wrote:

> On Thu, May 1, 2014 at 1:32 PM, Ronoaldo Pereira 
>  wrote:
>
> I'm porting the front-end handlers of a large Java app to Go. However, I'm
>> not able to run the Java and Go runtimes in paralell in the development
>> server, to share the same datastore backend.
>>
>> Is there a way to acomplish that? I'm asking here because I noticed some
>> Java code to launch instances from devappserver2 module in the Python SDK.
>> I tought that it may be possible to run both a Java module and a Go module
>> with that service, if I was using the Java Yaml configuration.
>>
>
>
>
> Yes you can, but you have to upload the Java and Go versions separately as
> different versions within the same application ID. Then you can use App
> Engine services (task queue, datastore, etc) to communicate between each
> version.
>
>
> -
> -Vinny P
> Technology & Media Advisor
> Chicago, IL
>
> App Engine Code Samples: http://www.learntogoogleit.com
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.