大约 60 秒 GAE 限制?
我想向 10,000 个用户发送一封电子邮件,但问题是服务器中的进程只能持续 60 秒。 您能否给出一个示例代码,计数为 1 亿,但应该分部分完成。我需要确定当达到 59 秒时已经过去了多少秒,它应该停止并继续另一个调用,以便不会出现 GAE 的 60 秒限制。 我不想使用 cron 作业,但任务队列可以。
谢谢你的帮助.. 我真的很感激..
i want to send an email to 10,000 users but the problem is the process in the server could only last for 60 seconds.
could you please give an example code that count 100 million but it should be done by part. i need to determine how many seconds had past when it reach 59 seconds it should stop and continue to another call so that the 60 seconds limit of the GAE will not occur.
i dont want to use the cron jobs but task queue will do.
thanks for help..
i really appreciate it..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行此操作的一种方法是捕获截止日期错误并将新任务排队
在实际应用程序中,您希望将光标传递到电子邮件列表查询到下一个任务
One way to do this is to capture deadline error and queue new task
In real app you want to pass the cursor to email list query to the next task
您可以:
使用任务发送固定数量的电子邮件(假设为 100 封)。然后将另一个任务排队以从第一个任务剩下的位置继续。 (任务仅限 10 分钟)。
使用MapReduce。
使用后端发送所有电子邮件(无截止日期限制)
您还可以检查截止日期例外情况,但我不喜欢
此博客帖子 详细讨论了截止日期例外情况。
You can:
Use Tasks to send a fixed number of emails (let's say 100). Then queue another task to continue where the first one left of. (Tasks are limited to 10 minutes).
Use MapReduce.
Use backends to send all the emails (no deadline limits)
You can also check for Deadline exceptions, but I'm not a fan of that method.
This blog post talks a little bit more about deadline exceptions.