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.


Re: [google-appengine] Modules vs Multiple Scripts?

2014-05-05 Thread Diego Duclos
Also important: each module is allowed to scale up / down seperatly, which
means you can configure the more important things to scale faster while
allowing slower scaling (and thus lower costs) on less important modules


On Tue, May 6, 2014 at 5:37 AM, Vinny P  wrote:

>
> On Tue, Apr 29, 2014 at 5:18 PM, ZTNXiLUzVm  wrote:
>
> I am developing in App Engine with Python and I understand what Modules
>> are from reading the 
>> documentation,
>> but I thought the process of splitting your code into multiple scripts and
>> mapping them in the app.yaml file was supposed to accomplish the same
>> thing. Does splitting the code into multiple scripts not actually do
>> anything except make the code more organized?
>>
>
>
> You may be getting a little confused from the terminology. A Python module
> ( https://docs.python.org/2/tutorial/modules.html ) is a file containing
> Python code. As you said, splitting up your app into different files helps
> with organization, code reuse, and so forth.
>
> An App Engine module is completely different and not related to the
> concept of Python modules except in the most generic way. It's true that
> GAE modules help with code organization, but it's much more than that. Each
> module tends to be a fully featured application or self-contained service:
> for example, one module is a web site, another module implements the API,
> yet another supplies the backend heavy-lifting logic, and so forth. GAE
> modules also supply other benefits: logs are separated and you can specify
> different instance sizes.
>
>
> -
> -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.


Re: [google-appengine] Why is appengine so slow communicating with CloudSQL?

2014-05-09 Thread Diego Duclos
This might be me, but I can't see any attachment ?


On Thu, Apr 24, 2014 at 5:46 PM, Myles Bostwick  wrote:

> Hi All,
>
> I hope this is the right place for this question.
>
> I am seeing some drastic differences in speed between development and
> production on a service call that goes to a CloudSQL backend.
>
> I ran three tests for comparison, each test ran 2 things:
> 1. Varied number of rows fetched from the database, 125, 250, 500, 1000
> and 2000, where a typical row size is on the order of 30 bytes
> 2. Ran each row count 20 times to get a sampling
>
> The three test environments were:
> 1. Hosted in appengine connecting to cloudSQL as production will be.
> 2. Developer mode locally, but connecting to CloudSQL via a static IP.
> 3. Developer mode locally and connecting to a local VM running MySQL.
>
> Now I would expect a little variance due to the interwebs, but I would
> expect closer to 50 or 100 ms, not 3-4 seconds.
>
> I've attached a graph of the results for anyone interested. (I mostly just
> want to show of my graph)
>
> If anyone has any suggestions on what could be causing such a drastic
> slowdown, I would be very appreciative.
>
> Cheers,
>
> Myles
>
> --
> 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.


Re: [google-appengine] Re: too many appengine frontend instances

2014-05-09 Thread Diego Duclos
The following was posted on the forums:
https://groups.google.com/forum/#!topic/google-appengine-downtime-notify/VmH7s-Eeyso


On Fri, May 9, 2014 at 5:14 PM, Keith Mukai wrote:

> Same problem here. Crazy instance numbers since about 4hrs ago. Normally
> 3-5 instances and then it grew to 60+. Dead in the water now at my billing
> limit.
>
> --
> 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.


[google-appengine] Why are cloud endpoints so slow ?

2014-05-24 Thread Diego Duclos
I've done some (non extensive) tests on google appengine,
and my response times vary from anywhere between 100ms and 5000ms when
directly sending http requests to a cloud endpoints.

Regardless of the actual response time, the google cloud console always
shows a processing time of around 50ms, which, while also somewhat
long-ish, is much more reasonable.

For the 100ms requests, I can safely know that the other 50ms are just
regular latency, but I have no idea where the cloud endpoint could be
spending 4.5 seconds at, and the logs show nothing useful at all.

Does anyone have some guidance for me regarding to this ? 5 seconds is
unacceptable slow and makes them completely unusable.

-- 
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] Re: Why are cloud endpoints so slow ?

2014-05-25 Thread Diego Duclos
These are not loading requests unfortunatly, The first request was ignored
here, that one usually takes around 10 seconds (That's with Go, funnily
enough)


On Sun, May 25, 2014 at 7:51 PM, Jeff Schnitzer  wrote:

> The long delays sound like loading requests. Are they not specifically
> marked as such in the logs? Check the old legacy log system too.
>
> Loading requests are the achilles heel of appengine, especially for
> low-traffic apps. The only solution so far seems to be "use Go".
>
> Jeff
>
>
> On Sun, May 25, 2014 at 2:00 AM, Robert King wrote:
>
>> also might be worth noting I'm using CORS on multiple app engine modules
>> etc. perhaps it's something to do with preflight requests?
>> http://monsur.hossa.in/2012/09/07/thoughts-on-the-cors-preflight-cache.html
>>
>>
>> On Sunday, 25 May 2014 20:53:15 UTC+12, Robert King wrote:
>>>
>>> Don't get me wrong - I absolutely love cloud endpoints - they speed up
>>> my development time and simplify my code significantly.
>>> Having said that, I'd really like to see some clarification from google.
>>> Are endpoints intended to be high performance? I haven't once seen
>>> mentioned in any google documentation that endpoints are low latency?  I've
>>> often been waiting 5-20 seconds for calls such as /_ah/api/discovery/
>>> v1/apis/archivedash/v1/rpc?fields=methods%2F*%2Fid&pp=0.
>>> even on apps that have little traffic, tiny payloads and no rpc calls.
>>> One of the new systems i'm building is using endpoints but i'll have to
>>> switch away from endpoints ASAP if I can't get some reassurance. Also I
>>> don't have time to wait "a couple of months" to see if they get faster. I'd
>>> also be interested to know how efficient python / go / java / php endpoints
>>> are at encoding & decoding different sized payloads with json or protobuff
>>> protocols. (Will probably have to generate these statistics myself &
>>> present some graphs etc - although I'm assuming google would have already
>>> performance tested their own product?)
>>> cheers
>>>
>>> On Sunday, 25 May 2014 08:29:48 UTC+12, Diego Duclos wrote:
>>>>
>>>> I've done some (non extensive) tests on google appengine,
>>>> and my response times vary from anywhere between 100ms and 5000ms when
>>>> directly sending http requests to a cloud endpoints.
>>>>
>>>> Regardless of the actual response time, the google cloud console always
>>>> shows a processing time of around 50ms, which, while also somewhat
>>>> long-ish, is much more reasonable.
>>>>
>>>> For the 100ms requests, I can safely know that the other 50ms are just
>>>> regular latency, but I have no idea where the cloud endpoint could be
>>>> spending 4.5 seconds at, and the logs show nothing useful at all.
>>>>
>>>> Does anyone have some guidance for me regarding to this ? 5 seconds is
>>>> unacceptable slow and makes them completely unusable.
>>>>
>>>  --
>> 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.
>

-- 
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.


[google-appengine] OpenID Connect support

2014-05-27 Thread Diego Duclos
With registrations for using the old OpenID 2.0 endpoints now closed, and
the appengine users API not supporting openID connect at all,
Would it be possible to get a timeline for openID connect support in the
users API (In my case, with Go, but I assume this is largely language
agnostic)

-- 
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] dev_appserver.py cannot connect to some HTTP endpoint

2014-05-28 Thread Diego Duclos
A more realistic alternative would perhaps be to configure your browser not
to send localhost traffic to the proxy at all.



On Thu, May 29, 2014 at 7:10 AM, Vinny P  wrote:

> On Mon, May 26, 2014 at 7:40 AM, Marco Lovato  wrote:
>
> Now the app loads. BUT inside the app, I still didnt managed to make
>> python Requests to run with Proxy :-)
>> Will left my appengine_rpc.py hacked, but this is a problem, isnt?
>>
>
>
> Yes, this is a problem. But it's not a problem with the dev appserver as
> far as I can see. The problem is the proxy; as you noted in your previous
> email it's rewriting even localhost requests.
>
> Sorry to say this, but right now it looks like your only choice is to
> complain to your company's IT department and make them fix the proxy. As a
> short term measure, you could try using an online IDE such as codenvy:
> http://docs.codenvy.com/user/paas/google-app-engine/
>
>
> -
> -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.


Re: [google-appengine] Python and java modules in the same app

2014-06-04 Thread Diego Duclos
I would strongly discourage using versions for this, using different
modules for the same appengine project is much a MUCH more sane way to do
this.


On Wed, Jun 4, 2014 at 8:07 PM, Vinny P  wrote:

> On Sat, May 24, 2014 at 7:38 AM, LPryor  wrote:
>
> - How do you manage the configuration?  The Java xml-based configuration
>> expects the app to list all the modules, whereas the Python yaml-based
>> configuration doesn't. So is the Java yaml-based configuration the way to
>> go?
>>
>
>
> You would upload the Java and Python applications as separate versions, then
> route requests using a dispatch file
> .
> Where did you expect to list the modules?
>
>
> On Sat, May 24, 2014 at 7:38 AM, LPryor  wrote:
>
> - Should I develop a whole Java app, essentially a stub default module
>> alongside the module I actually want, or can I do just the module I want?
>>
>
>
> Just the module you want. There's no need to add in other modules you
> don't want. Although it should be noted that a module itself is a Java app,
> so adding another module doesn't make it a "whole Java app".
>
>
> -
> -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.


Re: [google-appengine] Re: OpenID Connect support

2014-06-06 Thread Diego Duclos
Done

https://code.google.com/p/googleappengine/issues/detail?id=10997&thanks=10997&ts=1402082477


On Fri, Jun 6, 2014 at 8:25 PM, Peter McKenzie  wrote:

> Please create a feature request on the issue tracker.
>
>
> On Tuesday, May 27, 2014 12:22:45 PM UTC-7, Ronoaldo José de Lana Pereira
> wrote:
>>
>> +1 for this feature.
>>
>> Em terça-feira, 27 de maio de 2014 14h32min19s UTC-3, Diego Duclos
>> escreveu:
>>>
>>> With registrations for using the old OpenID 2.0 endpoints now closed,
>>> and the appengine users API not supporting openID connect at all,
>>> Would it be possible to get a timeline for openID connect support in the
>>> users API (In my case, with Go, but I assume this is largely language
>>> agnostic)
>>>
>>  --
> 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.


Re: [google-appengine] Re: Why are cloud endpoints so slow ?

2014-06-06 Thread Diego Duclos
Hello Jun,

The endpoint is sitting at
https://login-dot-psg-delta.appspot.com/_ah/api/version/v1/info

-- 
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] Confused about pricing for SSL

2014-06-08 Thread Diego Duclos
Where can the free SNI certs be added ? When I consult the cloud console,
it says they're 5$ a month


On Sun, Jun 8, 2014 at 10:17 AM, Vinny P  wrote:

> On Tue, Jun 3, 2014 at 2:16 AM, Harald Humml  wrote:
>
>> I´m a little bit confused about the pricing model for SSL on GAE.
>> So my question is: what cost information is right? And: is it correct
>> that I also need to an official certificate from verisign (just for an
>> example), or can I use my own certificates generated with openssl when I
>> use VIP?
>>
>
>
> You're looking at outdated information. SNI SSL is free (you just need to
> supply the certificates provided by a third party, which may cost money).
> If you want a virtual IP (VIP) to go along with SSL, you need to pay
> $39/per VIP/month. The major difference between the two is that some older
> clients (such as Android 2.x units) don't support SNI and require VIP SSL.
>
> You can use a self-signed cert if you want (
> https://developers.google.com/appengine/docs/ssl#certificate_requirements),
> but it's better to get a certificate from a trusted company such as
> Verisign. If price is a factor, there are occasional sales on certificates
> that you can wait for.
>
>
> -
> -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.


Re: [google-appengine] Confused about pricing for SSL

2014-06-08 Thread Diego Duclos
How do I access that menu ? I'm not very familiar with the old console12


On Sun, Jun 8, 2014 at 10:40 AM, Vinny P  wrote:

> On Sun, Jun 8, 2014 at 3:23 AM, Diego Duclos <
> diego.duc...@palmstonegames.com> wrote:
>
> Where can the free SNI certs be added ? When I consult the cloud console,
>> it says they're 5$ a month
>>
>
>
> I see $0 for 5 certificate slots here: http://imgur.com/ojsW1lY
>
>
> -
> -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.


Re: [google-appengine] Re: Appengine ecosystem?

2014-06-27 Thread Diego Duclos
I find visiting the #appengine IRC channel answers this need for me. Though
it's quiet at times, more people joining it would help tremendously there.
We also have this very mailing list of course.


On Fri, Jun 27, 2014 at 12:12 PM, Philip Kilner 
wrote:

> Hi,
>
> On 27/06/14 09:15, timh wrote:
> > Unfortunately it seems all the good appengine discussions went away with
> > the SO introduction
> > however SO is no good for discussions about approach, idea's etc...  it
> > also seems like a lot of input etc
> > disappeared when people like Nick Johnson and Ikai went elsewhere.
> >
> > Just my 2c worth.
> >
>
> +1
>
> I find that listening to the chit-chat of form discussions is a great
> way to discover how other people use tools and helps me learn, and the
> lack of such a forum since the advent of SO as the official channel has
> made App Engine that much less attractive as a result.
>
> Ultimately, Google's changes in this area have convinced me that I am
> not the intended audience for App Engine. As a solo developer, my needs
> have been much better served since I switched to platforms where the
> vendors see the value in this sort of community.
>
>
> --
>
> Regards,
>
> PhilK
>
>
> 'a bell is a cup...until it is struck'
>
> --
> 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.