如何在Python中管理/托管AWS SQS队列消费者?
我目前正在开发一个用 Python 编写、利用 Amazon SQS 的分布式处理应用程序。
在 Python 中正确创建和托管队列使用者的最 Pythonic 方法是什么:
- 可靠:如果出现问题并且使用者终止,则应执行一些反应性代码,并且应重新启动处理
- 重用代码:必须有一些包出来可以帮助解决这个问题,如果不用重新发明轮子那就太好了:)
提前致谢!
I am currently working on a distributed processing application written in Python that utilises Amazon SQS.
What is the most Pythonic way of properly creating and hosting a queue consumer in Python that:
- is reliable: if there is a problem and the consumer terminates, some reactive code should be executed and processing should restart
- reuses code: there must be some packages out there to help with this, and it would be great not to have to re-invent the wheel :)
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您看过 Boto 吗?
Have you looked at Boto?