[google-appengine] Re: Best (hosted) CI solution to use with GAE (Python)?

2015-08-12 Thread Filip Nilsson
Hey! Sorry for my late replay, vacation time here. Thanks for you detailed response, we ended up trying CircleCI, and it seems to work really good. Also, great input about the reverse proxying, I had some caching plans in mind already, so you speared me some time there. Cheers, Filip Den onsd

[google-appengine] Re: Download specific Module code?

2015-08-12 Thread Ryan (Cloud Platform Support)
Working with Paul offline we came to the conclusion that using the gcloud tool to download the module is best option. On Tuesday, August 4, 2015 at 6:32:00 AM UTC-4, Paul Canning wrote: > > I know you can download your default mod

[google-appengine] Re: python: error when calling platform.platform()

2015-08-12 Thread Patrice (Cloud Platform Support)
Hmmm, I see. Well for now your workaround is definitely something. As Authy is a 3rd party, I must admit I'm not used to it. I'll try to see if I can think of something else as well. In the meantime, maybe someone else on the google group will have a solution for you :). Cheers! On Tuesday, A

[google-appengine] Re: Java app and scheduler settings

2015-08-12 Thread Nick (Cloud Platform Support)
Hi Mauricio, I'd be happy to look further into this issue for you, especially since it seems related to the issue Stefano is experiencing. Could you provide the case reference number if you have it? Thanks, Nick On Tuesday, August 11, 2015 at 5:43:59 PM UTC-4, Mauricio Lumbreras wrote: > > >

[google-appengine] Issues with Appengine Search API?

2015-08-12 Thread Mike Schlanser
Hi, We're getting a ton of errors with the search API ( Error below ) when adding sorting to the call. Anyone else experiencing this? com.google.appengine.api.search.SearchException: Failed to complete request > in 9499ms Thanks, Mike -- You received this message because you are subscribe

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread Santosh Ravindranath
Hi We're also getting a ton of errors non-stop with the Search API : com.google.appengine.api.search.SearchException: Failed to complete request in 9488ms . We never had this error before. It has started throwing only a few minutes back Thanks Santosh On Thursday, 13 August 2015 00:08:4

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread David Fischer
Yes, I am seeing exactly the same. It started at 11:10 PST. Most of our searches are failing but some are succeeding. It seems to apply to certain indexes. We have some search indexes where we are seeing ~100% success rate and some where we are seeing 100% failure. On Wednesday, August 12, 2015

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread Patrick Machold Admetlla
Hi! The same is happening to me! Tons of "Timeout: Failed to complete request in 9998ms" already for 40 minutes. And I have not seen any update from Google. Any idea about where to see what is happening? On Wednesday, August 12, 2015 at 8:38:42 PM UTC+2, Mike Schlanser wrote: > > > Hi, > > W

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread David Fischer
As of 11:46 PST, my searches are back to normal. On Wednesday, August 12, 2015 at 11:42:29 AM UTC-7, David Fischer wrote: > > Yes, I am seeing exactly the same. It started at 11:10 PST. Most of our > searches are failing but some are succeeding. It seems to apply to certain > indexes. We have s

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread Mike Schlanser
Yeah, same here. Seems to be back to normal now. On Wednesday, August 12, 2015 at 2:46:53 PM UTC-4, David Fischer wrote: > > As of 11:46 PST, my searches are back to normal. > > > On Wednesday, August 12, 2015 at 11:42:29 AM UTC-7, David Fischer wrote: >> >> Yes, I am seeing exactly the same. It

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread Santosh Ravindranath
Ok its working for us too now. Thanks Santosh On Thursday, 13 August 2015 00:08:42 UTC+5:30, Mike Schlanser wrote: > > > Hi, > > We're getting a ton of errors with the search API ( Error below ) when > adding sorting to the call. Anyone else experiencing this? > > com.google.appengine.api.sear

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread David Fischer
As of just a couple minutes ago, this appeared on the status page: https://status.cloud.google.com/ On Wednesday, August 12, 2015 at 11:51:18 AM UTC-7, Mike Schlanser wrote: > > Yeah, same here. Seems to be back to normal now. > > On Wednesday, August 12, 2015 at 2:46:53 PM UTC-4, David Fischer

[google-appengine] Re: Issues with Appengine Search API?

2015-08-12 Thread Patrick Machold Admetlla
Yep! Everything back to normal, too. David, thanks for posting the status page. It was exactly what I was looking for! On Wednesday, August 12, 2015 at 8:38:42 PM UTC+2, Mike Schlanser wrote: > > > Hi, > > We're getting a ton of errors with the search API ( Error below ) when > adding sorting t

[google-appengine] Re: Understanding the value proposition of App Engine for data processing

2015-08-12 Thread Duo Zmo
Okay, thanks for your responses. Looking forward to a Python SDK for the Dataflow service. -- 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

Re: [google-appengine] Re: Problem authenticating to GAE app using GoogleCredential OAuth2

2015-08-12 Thread Nick (Cloud Platform Support)
Hi Julian, OAuth2 is a complex topic and has many methods of application, being just an authentication/authorization protocol, and having many possible uses / forms of appearance (client-server, server-server, 3-legged, etc.) >From your comments, I can now understand you're using login: admin o

[google-appengine] warm up instances need for encoding declared

2015-08-12 Thread Chuy Cepeda
Hello, just wanted to share something I just experienced. I have an appengine app running on python and for several notifications in spanish I use a messages.py file which is loaded in almost every handler. This file gave me no issues given it wasn't containing any specification for encoding. I

[google-appengine] Re: appstats analysis - continued

2015-08-12 Thread Nick (Cloud Platform Support)
Hi Rajesh, Google Groups isn't the place to post specific technical issues, as this forum is meant more for general discussion of the platform and services. If you would like help with a technical issue, you should post to stackoverflow [1] or serverfault [2]. If you believe you've identifie

[google-appengine] Re: How to implement identity provider?

2015-08-12 Thread Nick (Cloud Platform Support)
Hi Pengcheng, It's quite possible to find tutorials online on implementing your own login form, storage of usernames and passwords, hashed salting of stored passwords, etc. However the convenience of implementing federated login schemes is what actually makes them attractive. You should check o

Re: [google-appengine] Re: Problem authenticating to GAE app using GoogleCredential OAuth2

2015-08-12 Thread Julian Bunn
Hi Nick, Thanks for much for persisting with your help! Yes. your understanding is correct: I'd like to use a service account to login so that I can make requests to an admin route of my app. Under "Credentials" in the new Google Developers Console, I see the Service Account listed in the OAut

[google-appengine] Re: warm up instances need for encoding declared

2015-08-12 Thread Chuy Cepeda
I thinks this was more related to an update from appengine backend. Another of my projects without warm up requests crashed the same and fixed the same. It was working previously with no inconvenient and suddenly both projects threw 500's because of this encoding declaration in-between the last