[google-appengine] Cron jobs silently failing

2022-02-15 Thread Travis Marble
I have noticed that some of my Cron jobs were silently failing, the dashboard in the cloud scheduler show success. Digging into the logs, I can see the exception being thrown by the request, but the request shows in the logs as being successful. To further test this I created an endpoint that

[google-appengine] Cron job targeting a specific service returns status 400

2020-12-15 Thread David Pomeroy
Hi have a Python 3.8 Django app deployed to GAE standard with a working cron job that executes an endpoint. The endpoint returns a 200 when everything goes well. The app.yaml file does not define the service name and is the default service. there is only one job in the cron.yaml and does not spec

[google-appengine] Cron job permission

2019-10-30 Thread Luciano César Natale
0I need to grant a GCP project user permissions so he is able to run cron tasks from the app engine console. I've been looking around and could not find suitable permissions for that. Any tip?? -- You received this message because you are subscribed to the Google Groups "Google App Engine" gro

[google-appengine] Cron jobs stop to work, responding a 404 code

2018-12-18 Thread Rodrigo Brauwers
Hi! My cron jobs stopped to work few days ago. It responds with a 404 code. It's strange, because I didn't change the yaml files (see attachments). Previously everything was ok. Thanks. [image: Screen Shot 2018-12-13 at 16.34.22.png] -- You received this message because you are subscribe

[google-appengine] Cron Jobs failure

2018-12-17 Thread Rodrigo Brauwers
Hi! My project has few cron jobs that stop to work few days ago. The request returns 404 error code. Any guidance how solve this issue is appreciated. Attached is app.yaml and cron.yaml. [image: Screen Shot 2018-12-13 at 16.34.22.png] -- You received this message because you are subscribed t

[google-appengine] Cron job not start in Standard engine

2018-09-10 Thread Guangjie Feng
Hi, The cron job is not visible in "Cron Jobs" tab. It doesn't run as well. My cron.xml is next to appengine-web.xml. /task task on test every 10 minutes Url "/task" can be access. -- You received this message because you are subscribed to the Google Groups "Google Ap

[google-appengine] Cron Job config takes a day to be effective

2018-02-23 Thread Justin Yip
Hello, I have recently updated my cron config in appengine to reschedule the running interval from every 3 hrs to every 6 hour. Appengine console page reflects the new changes. However, this new config is not in effect for a long time before it becomes effective. I am still seeing the cron job

[google-appengine] cron in microservice url

2017-10-20 Thread Shahin R. Namin
Hi guys I have an issue with the cron jobs in microservices. I am writing a python app engine microservice with cron jobs, and I am getting URL not found anytime the cron starts running. It seems the cron jobs call the URL corresponding to the app (without the microservice-dot in the beginning

[google-appengine] Cron job runs successfully on local development server but fails after deployed

2017-09-07 Thread Kai Zhou
I include a cron job in my app. The following is the cron.yaml: cron: - description: monitor the spot every 60 seconds url: /task/cron schedule: every 1 minutes And here is the handler for "/task/cron": class CronHandler(webapp2.RequestHandler): def get(self): courses = Course.quer

[google-appengine] Cron doesn't start

2017-05-31 Thread Shachar Grembek
Hi, I am running an App Engine Standard environment and trying to se cron scheduled tasks. I've created the cron.xml (alongside the web.xml) and went by the guide in the following link: https://cloud.google.com/appengine/docs/standard/java/config/cron However, I don't see the cron start (both i

[google-appengine] Cron job failed in Google App Engine Flexible environment

2017-05-03 Thread Dhandapani Sattanathan
I m migrating my PHP application from Google App engine Standard Environment to Flexible environment . My application working fine with database and send grid. But Cron jobs are failed. I could not find what I missed to run a Cr

[google-appengine] Cron tasks not uploaded using Google Cloud Tools for Eclipse

2017-03-14 Thread Daniel Garrido
Hi all, I have tried to create a cron task using cron.xml file: /save daily summary job every 2 minutes When I deploy my app to app engine using Google Cloud Tools for Eclipse, the cron task is not being created (it doesn't appear in the console). I tested the same example

[google-appengine] cron job via google app engine or via any npm module(node-schedule)

2016-09-19 Thread himanshu kapoor
I need to deploy few cron jobs for my nodejs app hosted on google cloud. I have 2 options cron-schedule npm package. cron.yaml provided by app engine. I am not sure which has better performance and why ? adding to it, I want my cron jobs to work on preemptible instance as they are meant for

[google-appengine] Cron job retry parameter for Python

2016-04-19 Thread Cody Li
Following this link https://cloud.google.com/appengine/docs/python/config/cron At the Cron Retries section, isn't the format for retry_parameter wrong? I can't deploy my project with the given retry parameter. -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Cron Retries Feature Launched

2016-03-04 Thread 'Kim Lewandowski' via Google App Engine
Hi App Engine Developers, I'm happy to announce that we've launched a new feature for our Cron Service. We now support cron retries. You can configure your cron jobs to retry up to 5 times if they fail. Check out the documentation to learn more: Python

[google-appengine] Cron job not running on HTTPS

2016-02-22 Thread Akash Patni
Hi all, I am working on django project which is deployed on Google app engine. Currently I have enabled the functionality of forced redirection over SSL on website. After enabling forced redirection of website over SSL cron jobs are getting failed. Cron jobs are running fine over HTTP. Does any

[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 thi

[google-appengine] Cron task has fails without trace in the logs

2015-10-16 Thread PK
I have many periodic tasks scheduled by cron. Today I noticed that one of them that is supposed to run at 4:00AM Pacific every day had not run for two days. Next to the task in the console, in the status column, it had a yellow warning sign and the word Failed. I looked at the logs I could not f

[google-appengine] Cron scheduler synchronized is not working as expected.

2015-08-07 Thread Creative Cubs
I want to run a cron for every 2 minutes interval, 0,2,4,6,8 each cron execution runs for 2 minutes. I configured cron schedule with synchronized as below. But I still see scheduler is behaving as if synchronized not given. Crons are scheduled at 0-2 First cron 4-6 Second cron 8-

Re: [google-appengine] Cron - targeting a particular version of a particular module

2014-02-20 Thread Vinny P
On Thu, Feb 20, 2014 at 11:29 AM, Dawid wrote: > How can have a cron job target a particular version of a particular > module? I've tried: > *target: version.module* > > Unfortunately, appcfg.py won't accept it: > *Unable to assign value 'debug.reports' to attribute 'target':* > *Value 'debug

[google-appengine] Cron - targeting a particular version of a particular module

2014-02-20 Thread Dawid
Hi all, How can have a cron job target a particular version of a particular module? I've tried: *target: version.module* Unfortunately, appcfg.py won't accept it: *Unable to assign value 'debug.reports' to attribute 'target':* *Value 'debug.reports' for target does not match expression '^(?

[google-appengine] Cron failure on 1.8.3

2013-08-02 Thread john
My daily cron at 00:15 UTC failed last night, and there is no info for it in the logs. My instances changed from 1.8.2 to 1.8.3 yesterday -- did that have something to do with it? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubsc

[google-appengine] cron task not running. No errors in log. Huh!?

2013-07-24 Thread Cesium
I have a cron task that is run every 5 minutes. From this chart of requests/sec over the past 3 hours you can see that it has failed to run several times. The problem is particularly heinous within the past hour.

[google-appengine] Cron jobs auto repeat on failure option?

2013-07-20 Thread Marcel Manz
Sometimes it happens that cron jobs aren't executed correctly and get marked as 'failed' in the cron overview. Is there an option to tell App Engine to automatically retry instead of marking the job as 'failed' ? We use simple cron jobs to distribute workloads via the taskqueue to worker proces

Re: [google-appengine] Cron jobs auto repeat on failure option?

2013-07-19 Thread Jeff Schnitzer
Can you have the cron job do one and only one thing, enqueue a single task that does the work? Jeff On Fri, Jul 19, 2013 at 9:06 AM, Marcel Manz wrote: > Sometimes it happens that cron jobs aren't executed correctly and get > marked as 'failed' in the cron overview. Is there an option to tell

Re: [google-appengine] Cron jobs auto repeat on failure option?

2013-07-19 Thread Jeff Schnitzer
Weird, gmail wasn't showing me the prior replies. Sorry about repeating what everyone else already said. That said, I'd still cut out the key scanning or any other operation other than "enqueue this one task". Jeff On Fri, Jul 19, 2013 at 7:51 PM, Jeff Schnitzer wrote: > Can you have the cron

Re: [google-appengine] Cron jobs auto repeat on failure option?

2013-07-19 Thread Joshua Smith
Have your crons simply schedule a task. Tasks automatically retry when they fail, with geometrically-increasing backoff intervals. On Jul 19, 2013, at 12:06 PM, Marcel Manz wrote: > Sometimes it happens that cron jobs aren't executed correctly and get marked > as 'failed' in the cron overview.

[google-appengine] Cron not running in 5 minutes interval

2013-04-09 Thread pravanjan . niranjan
Hi All, I am running a cron job which runs every 5 minutes . cron.xml 2 validate batch message schedular /api/CronBatchMessageController/processBatch.req every 5 minutes from 00:00 to 23:59 The job runs for couple up time, then it getting fail with error o

Re: [google-appengine] Cron jobs not running for production apps

2012-06-24 Thread Takashi Matsuo
Hi Kesava, It's just a guess, I assume that the cron entry in question was supposed to run on "dynamic" backend instance. If that's the case, the cron execution can be a single point of failure, because the cron never retries. I'd suggest directing all the cron execution to FE, and for the task y

[google-appengine] Cron jobs not running for production apps

2012-06-21 Thread Kesava Neeli
Hi, We have many cron jobs that run as part of our application. Some crons run on FE instances and some hit our Backend instances for execution. Since this morning, teh crons are NOT running at regular intervals. I opened 2 production issues and attached screenshots. It's our production app and

Re: [google-appengine] CRON JOB EXAMPLE (PURE DJANGO CODE)

2012-06-05 Thread Takashi Matsuo
Hi Nikhil, Can you ask this kind of question on StackOverflow? We moved Q&A functionality from this forum to "google-app-engine" tag there. http://stackoverflow.com/questions/tagged/google-app-engine Please don't forget to read our doc first at: https://developers.google.com/appengine/docs/python

[google-appengine] CRON JOB EXAMPLE (PURE DJANGO CODE)

2012-06-05 Thread Nikhil Jain
Dear Guys, Am not able to setup cron job for pure django. Please share with a flow or simple example with steps. Seeking your's great help. Great Regards. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email

[google-appengine] Cron job on backends not run

2012-05-24 Thread Will
I have a daily cron job running on backends instance. It has been run without problem until the last couple of days. The log shows "/_ah/start" and "/_ah/stop" have been invoked but not my work url. Yesterday I temporary scheduled one more occurrence and it ran properly, but today the same thing ha

Re: [google-appengine] Cron syntax questions (Java)

2012-02-15 Thread Robert Kluin
ogle-appengine@googlegroups.com > Subject: RE: [google-appengine] Cron syntax questions (Java) > > Cron on Wednesdays in code check if it is the last one of the quarter > > > -- > You received this message because you are subscribed to the Google > Groups "Google

RE: [google-appengine] Cron syntax questions (Java)

2012-02-15 Thread Dai, Gary
46 PM To: google-appengine@googlegroups.com Subject: RE: [google-appengine] Cron syntax questions (Java) Cron on Wednesdays in code check if it is the last one of the quarter -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To pos

RE: [google-appengine] Cron syntax questions (Java)

2012-02-15 Thread Brandon Wirtz
Cron on Wednesdays in code check if it is the last one of the quarter -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to go

[google-appengine] Cron syntax questions (Java)

2012-02-15 Thread newdeveloper
How to define the last Wednesday of quarter? Thanks in advance. Gary -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appengine@googlegroups.com. To unsubscribe from this group, send email to go

[google-appengine] Cron jobs doesn't write to datastore

2011-10-12 Thread O
I have some cronjobs defined, their job is to update the datastore on a regular basis. - What I notice is that the cron jobs report to run fine according to AppEngine, but no data is to be found in the datastore. - If I navigate to the cronjob url manually in my webbrowser the datastore is updated

[google-appengine] Cron job every 30 minutes only on work days

2011-09-13 Thread Matija
Hi, is there a way to define something like this ? /cron/odgodjeni Jada jada every 30 minutes *every mon,tue,wed,thu,fri *from 06:00 to 15:00 Europe/Zagreb I don't want my cron job to starts on Saturdays and Sundays especially with new 15 minutes idle instance

[google-appengine] Cron job

2011-08-19 Thread ramesh
Hi, I have couple of cron jobs in my application. I have 5 cron jobs which are going to invoke in 15 mins interval. Out of 5 cron jobs, one cron is taking so much time to execute and it is giving exception. I have few question on this scenario.. 1) What was default time allowed to execute cron

[google-appengine] cron doesn't run the majority of the time and has no logs

2011-08-17 Thread Mike Schlanser
Hello, For one of our crons, it always says "Fails" and doesn't run. However there are no logs for this. I confirmed that the url is available and does the right process. I also get no log output from the actual process that should run. Is there something that I'm missing? Thanks, Mike -- Y

Re: [google-appengine] Cron less than 1 minute

2011-08-17 Thread Andrius A
Yes, use task queue, create 6 tasks with 10sec countdown per each cron request. Still it doesn't guarantee it will work 100% accurately. On 17 August 2011 13:38, Yifeng He wrote: > Hey everybody, > > I need repeating a script every 10 seconds, but GAE doesn't allow cron > less than 1 minute. > A

[google-appengine] Cron less than 1 minute

2011-08-17 Thread Yifeng He
Hey everybody, I need repeating a script every 10 seconds, but GAE doesn't allow cron less than 1 minute. Anyone have a alternative to cron or tips for me ? Tks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send e

Re: [google-appengine] Cron job won't stop.

2011-06-04 Thread Robert Kluin
Try: schedule: 1 of month 00:00 Robert On Fri, Jun 3, 2011 at 10:02, DEbben wrote: > Hello, > > I just started using app engine, but am having a bit of trouble with > my cron job. I developed my app with the development app server. I had > one request handler I wanted run once at the be

[google-appengine] Cron job won't stop.

2011-06-03 Thread DEbben
Hello, I just started using app engine, but am having a bit of trouble with my cron job. I developed my app with the development app server. I had one request handler I wanted run once at the beginning of each month so I added the cron with the syntax "1st day of month 00:00". I uploaded my app t

[google-appengine] Cron deadlines

2011-05-20 Thread Jeff Schnitzer
The documentation for Scheduled Tasks says "A URL invoked by cron is subject to the same limits and quotas as a normal HTTP request, including the request time limit." Is there a reason for scheduled tasks to have a 30s limit rather than the 10m limit for tasks? Seems silly to create a cron handl

[google-appengine] Cron is 301

2011-05-16 Thread 筱枫
My application needs to use 301 to my APP domain. if not os.environ.get('HTTP_HOST').endswith(domain) and os.environ.get('HTTPS') == 'off' and os.environ.get('X-AppEngine- Cron') is None: But why Cron is 301? os.environ.get('X-AppEngine-Cron') is None :Ineffective? -- You received this messa

[google-appengine] Cron job Failure

2011-01-26 Thread DougW
I have a cron setup to run a python file on the vizumetricsupdate application that is constantly failing although there is no error in the log. When I run this python file from IDLE it takes about 90 seconds to run - so I think this is where my problem lies. I believe there is a max time of 30 seco

[google-appengine] Cron jobs not getting executed

2010-11-11 Thread dflorey
Hi, one of my customers has problems with his app: trecontacts We have cron jobs scheduled for every minute, but they have not run for the last hours. Can someone please check? Thanks, Daniel -- You received this message because you are subscribed to the Google Groups "Google App Engine" grou

[google-appengine] Cron scheduling at runtime

2010-10-26 Thread Vibhuti Gupta
Hi I need to do runtime scheduling for certain tasks in my application. In GAE we need to modify cron.xml and upload it to the server. I am using java and am not able to find a way to accomplish this at runtime. Anyone has any ideas regarding this!! Regards -- You received this message beca

[google-appengine] Cron job ran twice today

2010-10-25 Thread Lior Harsat
Hi, I have noticed today that on of my cron jobs ran twice !!! I can see in the log the queue header : "queue_name=__cron task_name=989235fd7268bdc3a1bde56c2063bcd4" for both requests. further more in my cron jobs page in the admin console it states the the cron ran successfully but 26 seconds la

[google-appengine] Cron conf for repeat every hour at xx:05 ?

2010-10-21 Thread sodso
in GAE, how do we define a scheduled task in cron.yaml so that it runs every 1 hour at xx:05 time i.e. 10:05 am 11:05 am 12:05 pm 01:05 pm and so on is this even possible with GAE cron ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Cron not parsing, need to run From 10AM to 4PM every 15 mins

2010-10-08 Thread ursus
Hi, I need a cron to run my app every monday to friday from 10AM to 4PM, 4 times per hour. Can someone point me out how do it? I am having parsing issues. This schedule does not parse in Eclipse when submitting: every monday,tuesday,wednesday,thursday,friday 10:00,11:00 It chokes on the 10:0,11

Re: [google-appengine] Cron and App Versions

2010-10-07 Thread djidjadji
The cron jobs are uploaded separate from the source code. I think there is only one version of cron jobs, the last one uploaded. If you switch default application you only switch source code. 2010/10/7 Remigius : > In the documentation of cron jobs (see > http://code.google.com/intl/de-CH/appengin

[google-appengine] Cron and App Versions

2010-10-07 Thread Remigius
In the documentation of cron jobs (see http://code.google.com/intl/de-CH/appengine/docs/java/config/cron.html#Cron_and_App_Versions) it says that "Cron requests are always sent to the default version of the application." This may be correct, but is a very short statement of what actually happens,

[google-appengine] Cron Jobs not working and other Issues (Java)

2010-09-16 Thread Daniel
Since 16.10 pm none of my cron jobs is working anymore. I tried to trigger cron jobs by uploading a new cron.xml with minor changes (different timing) and nothing else. Now the application is completly broken. I get errors like Uncaught exception from servlet java.lang.NoClassDefFoundError: com/

Re: [google-appengine] Cron Job and Cursors

2010-09-10 Thread Sümer Cip
Thanks for the answer, just what I need, even more:) On Fri, Sep 10, 2010 at 9:25 PM, Ikai L (Google) wrote: > Here's a link: > > http://code.google.com/p/appengine-mapreduce/ > > > On Fri, Sep 10, 2010 at 8:58 AM, Robert Kluin wrote: > >> You might want to look into the mapper api. It is desig

Re: [google-appengine] Cron Job and Cursors

2010-09-10 Thread Ikai L (Google)
Here's a link: http://code.google.com/p/appengine-mapreduce/ On Fri, Sep 10, 2010 at 8:58 AM, Robert Kluin wrote: > You might want to look into the mapper api. It is designed to work > with large datasets, so it may be a good fit. > > > Robert > > > > > On Fri, Sep 10, 2010 at 07:11, Sümer Cip

Re: [google-appengine] Cron Job and Cursors

2010-09-10 Thread Robert Kluin
You might want to look into the mapper api. It is designed to work with large datasets, so it may be a good fit. Robert On Fri, Sep 10, 2010 at 07:11, Sümer Cip wrote: > I have 1 million recordes. I am doing statitical work with the data field. > What I want to do is to work in batches(with

Re: [google-appengine] Cron Job and Cursors

2010-09-10 Thread Sümer Cip
I have 1 million recordes. I am doing statitical work with the data field. What I want to do is to work in batches(with crons) with my data. That's all. On Fri, Sep 10, 2010 at 6:56 AM, Robert Kluin wrote: > What is "many entities," is it 100, 1,000, 1,000,000, more? What are > you doing with th

Re: [google-appengine] Cron Job and Cursors

2010-09-09 Thread Robert Kluin
What is "many entities," is it 100, 1,000, 1,000,000, more? What are you doing with the info field? Are you aggregating something? Transforming it? Writing one new model for each entity? What do you mean continue another day? Do you mean process some entities then stop and continue processing

[google-appengine] Cron Job and Cursors

2010-09-09 Thread Sumer Cip
Hi, I have a very basic problem. Below is my model: class DummyModel: id:Integer info:Integer added:DateTime What I need to do is to have a cron job running per day to filter on added field and do something with the info field, but I have many entities and I want to make this process

[google-appengine] Cron fails because of "Request was aborted after waiting too long"

2010-07-25 Thread François Masurel
What to do when your cron servlet fails with this message : "Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this message frequently, please contact

[google-appengine] Cron jobs in my application errors out - readbeats.appspot.com

2010-07-18 Thread Math -1
Hi, I have a cron job which periodically clears a table and populates with some new data. (It's a very simple table). Only once it had got it running properly, most of the times, i see the following : 1. Request was aborted after waiting too long to attempt to service your request. This may happ

[google-appengine] Cron job on Time???? 2 hours late would be better

2010-06-21 Thread djidjadji
The following shows in my cron job page for a specific job that needs to be done once a day --- every day 00:02 (UTC) 2010/06/21 00:02:02 on time Success --- It was exactly 02:00 late and it still calls it on time?? -- You received this message because you are sub

[google-appengine] Cron maintenance NOW, Sun 5/2 9-11p PDT

2010-05-02 Thread Wesley C (Google)
This is an alert that the planned cron maintenance is happening now. If you want to be notified of planned/scheduled downtimes, please subscribe to the read-only list at http://groups.google.com/group/google-appengine-downtime-notify ... you can go there now to subscribe as well as get more informa

[google-appengine] Cron Schedule Format

2010-03-29 Thread Jairo Vasquez Moreno
Hi, I'm getting this error when I update my app: Unable to assign value 'every day 04:00' to attribute 'schedule' But the cron seems to work properly. -- Jairo Vasquez Moreno Mentez Developer www.mentez.com Medellin - Colombia -- You received this message because you are subscribed to the Go

Re: [google-appengine] Cron Job Scheduling

2010-03-25 Thread Eli Jones
I use TaskQueue for stuff like this (I have a task that needs to run at every 5 minute mark [1:05, 1:10, 1:15, etc]). Schedule a daily cron (or maybe just a one time cron) that kicks of the first task.. and then write the task so that it schedules the next run after it finishes it's current run (a

Re: [google-appengine] Cron Job Scheduling

2010-03-25 Thread Shinichi Nakanishi
How about running a job every minute (synchronized) and check the time? min = datetime.datetime.now().minute if min == 30: # do whatever Or if you don't trust the App Engine Cron runs every minute, if min >= 30: if !checkLog(year, month, day, hour): saveLog(year, month, day, hour

[google-appengine] Cron Job Scheduling

2010-03-25 Thread prgmratlarge
How can I run a cron job at the 30 minute point on every hour. I don't want it to go every half hour -- i want it to go on every half hour of the hour. So it should specifically run at: 1:30,2:30,3:30,etc... -- You received this message because you are subscribed to the Google Groups "Google Ap

[google-appengine] Cron Job Not Running

2010-03-15 Thread Aaron
Hi all, I'm having troubles getting my cron jobs running. They were running fine this morning, and suddenly stopped with virtually no changes to the code. Here is my cron.yaml file: cron: - description: emails url: /cron/sendemails schedule: every 1 minutes The URL is mapped to require adm

Re: [google-appengine] cron job every 20 seconds?

2010-03-07 Thread Iap
2010/3/7 Richard > How can I get a cron job to run every 20 seconds? Run 3 identical ones > every minute? > > This might help: http://groups.google.com/group/google-appengine/browse_thread/thread/7645670d581b95f1/4b7b61c4814d6a2d?lnk=raot -- You received this message because you are subscribed

Re: [google-appengine] cron job every 20 seconds?

2010-03-07 Thread Sapan Bhatia
Hi Richard, You might want to look at the Task Queue API. You could for instance make your job schedule itself at T+20 seconds as a task, after making sure that T+20 > the timestamp of the last scheduling of the job. Then have a "monitor" cron job check every once in a while that the chain didn't b

[google-appengine] cron job every 20 seconds?

2010-03-07 Thread Richard
How can I get a cron job to run every 20 seconds? Run 3 identical ones every minute? Richard -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this g

Re: [google-appengine] Cron jobs not running

2010-02-24 Thread Eli Jones
One of my sites has a cron job that is scheduled to run on Wednesdays at 11AM.. (it of course, did not run at 11 when GAE was in its death throes).. It successfully ran at 1:30 PM EST (about 9 minutes ago, but 3.5 hours late.). On Wed, Feb 24, 2010 at 1:36 PM, Chris L wrote: > My site is back up

[google-appengine] Cron jobs not running

2010-02-24 Thread Chris L
My site is back up after today's outage but cron jobs have not been run since about 15:47 UTC. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this

[google-appengine] Cron syntax in 1.3.1

2010-02-10 Thread theillustratedlife
rocTimeSpecification(entry.schedule) File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/ GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/ google/appengine/cron/groctimespecification.py", line 82, in GrocTimeSpecification parser.time

Re: [google-appengine] cron job and secured application

2010-02-08 Thread Nick Johnson (Google)
Hi, I presume from your description you're enforcing https-only in your code? Cronjobs don't actually use HTTP, so they simply fill in the protocol value with a default of 'http'. You need to exempt cron requests in your app from sending 302s. -Nick Johnson On Sat, Feb 6, 2010 at 1:15 AM, lent

[google-appengine] cron job and secured application

2010-02-05 Thread lent
Hi, I have an (java) application that's secured so that only https access is allowed. I'm running into a problem with cron jobs in that they are sent using http and when scheduled request hits my app gets redirected to https and and winds up getting "too many continues" and 302 status. I didn't

[google-appengine] cron Schedule Format

2010-01-23 Thread Jeff
Hi, The documentation that I've been able to find on the schedule format for cron is rather sparse. Is there a way to specify time intervals? What I'd like to do is have my cron ping my web page more frequently during certain hours than others. Something like: Every 1 minutes between 09:00 and

[google-appengine] cron job fails with no error in logs

2010-01-19 Thread ten_foot_ninja
I have a cron job that runs every 5 min, it sends emails and it always works (emails are sent to appropriate places). But every time it runs, in the "cron jobs" link in my app engine dashboard it says "on time Failed" There is no trace of any issues at all in my logs, emails are sent properly but

Re: [google-appengine] Cron jobs fail with error "Request was aborted after waiting too long to attempt to service your request."

2009-12-25 Thread Abhinav Bhagwat
*PING* -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, v

Re: [google-appengine] Cron jobs fail with error "Request was aborted after waiting too long to attempt to service your request."

2009-12-22 Thread Abhinav Bhagwat
My appid is 'checksendsms'. It is a java app. Almost 45% (113) requests failed yesterday and the rate is similar every day. I could not see any patterns as such. Your help and support is highly appreciated. Thanks, Abhi On Wed, Dec 23, 2009 at 3:38 AM, Jason (Google) wrote: > What rate do you

Re: [google-appengine] Cron jobs fail with error "Request was aborted after waiting too long to attempt to service your request."

2009-12-22 Thread Jason (Google)
What rate do you see your cron handlers fail? You mention that your cron jobs fire off once every five minutes which is 288 per day. Of these, how many fail? Do you notice any patterns, e.g. consistent failures at a certain time of day or multiple failures in a row? Any specifics you can provide wo

[google-appengine] Cron jobs fail with error "Request was aborted after waiting too long to attempt to service your request."

2009-12-14 Thread Abhi
Sometimes my cron jobs fail with a HTTP 500 error and message:- Request was aborted after waiting too long to attempt to service your request. Most likely, this indicates that you have reached your simultaneous dynamic request limit. This is almost always due to excessively high latency in your ap

Re: [google-appengine] cron - too many continues

2009-11-23 Thread Eli Jones
does your app.yaml have the appropriate lines to handle the cron url as well? app.yaml should have this line before other handlers: - url: /testcron script: test.py or something like that.. On Mon, Nov 23, 2009 at 8:43 AM, googlegeeza < gwynhow...@steppingstonesoftware.co.uk> wrote: > i know thi

[google-appengine] cron - too many continues

2009-11-23 Thread googlegeeza
i know this has been posted before, but in other posts the error was caused by redirects and other issues. i have a cron job scheduled to run every minute (also tried it every 5 minutes). the cron job runs some code which prints a string to the the log, that's it. but it doesn't run. the error on

Re: [google-appengine] Cron job syntax

2009-11-18 Thread Eli Jones
Here's the fun way! Figure out a way to represent the sequence of hours you need it to run... n0 = 6, n1 = n0 + 1, n2 = n1 + 1, n3 = n2 + 1, n4 = n3 + 1, n5 = n4 + 3, n6 = n5 + 4 Have a cron job start it off at 6am... Then have the code set a taskqueue to call itself.. Setting k = k+1 as a param

[google-appengine] Cron job schedule time reset when uploading new version

2009-11-18 Thread djidjadji
I have a simple cron job that needs to run "every X hours" --- cron.yaml --- cron: - description: Hourly Check url: /jobs/check schedule: every 1 hours -- If I upload a new version of the app the schedule time

[google-appengine] Cron job syntax

2009-11-17 Thread GAEfan
Is it possible to specify various times in a Cron schedule, like: - description: do this job url: /atThisURL schedule: every mon,tue,wed,thu,fri,sat 06:00,07:00,08:00,09:00,10:00,13:00,17:00 >From the spec, it does not look like you can. Hate to waste 7 cron jobs on this one task. Thanks.

[google-appengine] cron update disfunction

2009-10-19 Thread jc222
Hi all, I have tried the the cron function with a first url-pattern setted to every 10 minutes. It looks fine to me. Now I have changed my cron.xml file and I try to use another url- pattern with a frequency of 1 day. I deploy my java app with no errors reported by eclipse. The dashboard tells me

[google-appengine] Cron job suffering from intermittent timeouts since approx 21:00 UTC 12-OCT-09

2009-10-13 Thread RollingCircle
(Apologies if this appears to be a cross-posting - I did raise this as a reply to a post describing a similar issue, but that reply seems to have disappeared into the ether) Since approx 21:00 UTC yesterday (12-OCT-09) my application (tag 'metutil') has been suffering from roughly 75% timeouts on

[google-appengine] cron job broken again??

2009-09-22 Thread KAVIN
Yesterday I found cron job in my app went down for a hour.And now it went down again! I built up a twitter bot using XMPP in gae so I have to keep grabbing messages from twitter every two minutes.And I have no idea what's going on with cron job these days. --~--~-~--~~~---

[google-appengine] cron / queue quota ?

2009-09-10 Thread Jason C
Is there any quota on the number of cron entries? How about the number of named queue entries? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-ap

[google-appengine] Cron job fails without giving additional information

2009-08-19 Thread Raghuram Devarakonda
I am trying to get the following cron jobs work with my (Python) app. - cron: - description: Wednesday alert url: /email_alerts schedule: every wednesday 03:00 - description: Friday alert url: /email_alerts schedule: every friday 03:00 - I verified that '/email_alerts' works as

[google-appengine] Cron hasn't run yet

2009-07-28 Thread Hanz
My application uses cron for a day, without any problem, but today somewhere from 4:00 GMT, cron stop work. I tried to redeploy app but, I still see that cron hasn't run yet (interval is "every 5 mins"). --~--~-~--~~~---~--~~ You received this message because you a

[google-appengine] Cron "Hasn't run yet"

2009-07-20 Thread Dalius
Hello, I see "Hasn't run yet" status in Cron Jobs. Log indicates the same. It was working fine up until yesterday. I found that some people experienced this problem but I have not found solution. Could anybody help me? I have tried updating cron with different numbers but that doesn't help. My

[google-appengine] Cron Jobs Not Running (July 20th)

2009-07-20 Thread Brian
Is anyone else having a problem with cron today? None of my cron jobs have run for several hours (task queues are working fine). Note to Google: you should include information about cron, and task queues in the status page. --~--~-~--~~~---~--~~ You received this m

[google-appengine] Cron not working suddenly?

2009-07-20 Thread Kyle Jensen
I have numerous cron jobs, as below, all of which stopped working in the past few hours. The requests do not even show up in the requests section of the 'log' page on app engine's dashboard. - description: getting new tweets url: /cron/fetch-new-tweets/ schedule: every 5 minutes - descripti

[google-appengine] CRON, big bug today

2009-07-01 Thread Sylvain
Hi, Today, since 6:00 (PARIS), my cron is running each second. This cron must run only once a day : cron: - description: reminder by mail url: /reminder schedule: every day 06:00 timezone: Europe/Paris This cron works fine since 15 days without any issue. This cron sent a mail, so now my

  1   2   >