I want to schedule a job in GAE using cron.xml. My requirement is something like this: Every 5 hours from 6:00 am on Saturday.
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
- facebook “could not retrieve data from URL”
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Google appEngine: 404 when accessing /_ah/api [dup
-
Google App Engine Error:
INVALID_ARGUMENT
The Schedule format doesn't support such schedule specification.
But you can use a schedule which contains part of your specification and complete the rest inside the scheduled job itself.
For example, you can use a cron schedule like
every 5 hours from 6:00 to 0:00
and inside the scheduled job 1st thing you do is check today's day and exit if it's not Saturday.