[google-appengine] cron

2015-11-14 Thread Trez Ertzzer
Hello. I would like to know: for how long can a "cron task" run? normal task is 10 minutes. but what about the "cron task"... thank you. sorry if it written somewhere but I read this: https://cloud.google.com/appengine/docs/java/config/cron --> did not find my answer -- You received

[google-appengine] Re: cron

2015-11-14 Thread Alejandro Gonzalez
Hello Trez, A Cron Task is an scheduled HTTP request. The time it can run, depends on witch instance type receive the request. If you need a long process to run from a cron task, a common approach is to launch a task queue (from the cron request) in a Manual or Basic scaling module. Cheers

[google-appengine] Not able to add SSL certificates for a verified domain

2015-11-14 Thread Harsimran Singh Maan
Hi, I have verified the domain and have a valid certificate and corresponding 4096 bit RSA key. I am not able to add the key-cert pair to the App engine SSL certificate section. I get an error "The SSL certificate provided could not be inserted.". Am I missing something or is the 4096 bit key

[google-appengine] Re: Not able to add SSL certificates for a verified domain

2015-11-14 Thread nuchaev
Maximum allowed key modulus is 2048 bits . On Sunday, 15 November 2015 03:47:52 UTC+1, Harsimran Singh Maan wrote: > > Hi, > I have verified the domain and have a valid

[google-appengine] Re: User Rate Limit Exceeded

2015-11-14 Thread Fernando Lopez
Hello Nick, Thanks for the info. Can you confirm if Google has changed anything regarding those quotas last week? We have the feeling the quota limit is much more reduced than in the past. Regards, Fernando. On Friday, 13 November 2015 20:44:43 UTC+1, Nick (Cloud Platform Support) wrote: > >

Re: [google-appengine] Re: Console -> Monitoring (stackdriver)

2015-11-14 Thread Thanasis Delenikas
Hello Josh, I've sent you an email, thank you for your interest! On Saturday, November 14, 2015 at 1:17:12 AM UTC+2, Josh Moyer wrote: > > Hello Thanasis, > Would you please reply privately to me at moyer at google dot com and let > me know your e-mail address and Stackdriver account name so

Re: [google-appengine] Re: cron

2015-11-14 Thread 'Josh Moore' via Google App Engine
For some additional clarification, a cron task is not necessarily a task queue task. As Alejandro said, it can merely an HTTP request. That means it can be of the following: 1) a request sent to a standard autoscaling instance (F* instances), be subject to a 60 second deadline; or 2) a request