Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我每小时在 Google Appengine 上成功运行一个 cron 作业。但是我希望它在我启动应用程序时启动。现在它在开始后 1 小时执行第一个 cron 作业。
我正在使用 Python。
生产中没有“启动”应用程序。您第一次部署应用程序,crontab 现在存在并且 crontab 调度已启动。因此,我假设您的意思是,除了 cron 计划之外,您每次部署应用程序的新版本时都希望运行 cron 作业。
您可以调用 cron 处理程序,所以为什么不将 appcfg 包装在一个脚本中,该脚本在您执行部署后调用 cron 处理程序。使用 wget/curl 等......