删除超过配额情况的 cron xml,无需等待
使用应用程序引擎几天后,我设法阻止了我的应用程序。 情况是,我将一个项目部署到 GAE 中,其中每 2 分钟运行一次 cron 作业,并且它耗尽了 cpu 时间(目前每 24 小时运行 6.5 小时)。作为一个 cron 作业,它会一直运行下去。 我无法上传普通的 cron.xml 来删除旧的,因为我没有 cpu 配额,所以我必须等到 24 小时截止日期重置我的配额时间。
在这种情况下有没有办法删除 cron 而不必等到截止日期? (如果谷歌在管理面板中提供了“删除 cron”按钮,那就太简单了......)
after some days playing with the app engine I managed to block my app.
The situation is that I deployed a project into GAE with a cron job running every 2 mins and it run out of cpu time (currently 6.5hours every 24 hours). And being a cron job it keeps running and running.
I can´t upload a plain cron.xml to remove the old one because I have not cpu quota, so I have to wait until the 24 hours deadline resets my quota time.
Is there a way to remove a cron in this situation without having to wait until the deadline?? (it would be so simple if google had provided a "delete cron" button in the admin panel...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 CPU 配额即可上传新版本的应用程序。只需使用标准部署流程上传一个空的即可。
You don't need CPU quota to upload a new version of your app. Just upload an empty one using the standard deployment process.