我想像这样安排我的 cron 作业
every 5 minutes from 6 am to 1 am and every 30 minutes from 1 am to 6 am
如何在 cron.xml 内安排这个<schedule tag>
以及如何为<timezone>
印度配置时间?
我想像这样安排我的 cron 作业
every 5 minutes from 6 am to 1 am and every 30 minutes from 1 am to 6 am
如何在 cron.xml 内安排这个<schedule tag>
以及如何为<timezone>
印度配置时间?
你可以这样说
<schedule>every 5 minutes from 10:00 to 14:00</schedule>
在计划标签内。如果您想拥有“和”,那么我认为创建多个 cron 条目。
https://developers.google.com/appengine/docs/java/config/cron
同样,您可以配置时区:
<timezone>India</timezone>
您必须在这里找到具体的值:
http://en.wikipedia.org/wiki/Time_in_India
http://en.wikipedia.org/wiki/List_of_zoneinfo_time_zones
时区应该是标准 zoneinfo 时区名称的名称,如该页所述。
例如,对于多个定时作业,来自文档:
<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/recache</url>
<description>Repopulate the cache every 2 minutes</description>
<schedule>every 2 minutes</schedule>
</cron>
<cron>
<url>/weeklyreport</url>
<description>Mail out a weekly report</description>
<schedule>every monday 08:30</schedule>
<timezone>America/New_York</timezone>
</cron>
<cron>
<url>/weeklyreport</url>
<description>Mail out a weekly report</description>
<schedule>every monday 08:30</schedule>
<timezone>America/New_York</timezone>
<target>version-2</target>
</cron>
</cronentries>
对于印度,您需要使用Asia/Kolkata
时区,并且要结合这两个时间表,您需要创建 2 个 cron 作业。
它会是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<cronentries>
<cron>
<url>/your-endpoint</url>
<description>Your task every 5 minutes</description>
<schedule>every 5 minutes from 06:00 to 01:00</schedule>
<timezone>Asia/Kolkata</timezone>
</cron>
<cron>
<url>/your-endpoint</url>
<description>Your task every 30 minutes</description>
<schedule>every 30 minutes from 01:00 to 06:00</schedule>
<timezone>Asia/Kolkata</timezone>
</cron>
</cronentries>