Azure 队列和表存储事务最佳实践
使用天蓝色表存储,我阅读了有关同一分区内的实体组事务的信息。现在,如果我将 Azure 队列与表存储一起使用会发生什么。是否可以从队列中处理消息,插入到表存储中。如果出现问题,是否需要回滚并将消息再次放入队列?
或者我应该如何使用 Azure 处理这种情况
Using azure table storage I read about Entity Group Transactions within the same partition. Now what happens if I use the Azure Queue together with table storage. Is it possible to get handle a message from the queue, insert into table storage. If something breaks, rollback and put the message on the queue again?
Or how should I handle such a scenario with Azure
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表和队列没有任何关联的事务。
以下是一些常规队列使用指南:
'RENDER|Source-URL'
。您正在渲染视频,它需要两次通过。您已完成第 1 遍,结果存储在临时 blob 中。您可以使用'RENDER|Source-URL|Pass1-URL'
等内容修改消息。现在,假设出现问题并且您的渲染任务由于某种原因失败。稍后,当您再次收到此消息时,您可以从第 2 关开始,而不是从头开始。Tables and queues don't have any associated transactions.
Here's some general queue usage guidance:
'RENDER|Source-URL'
. you're rendering video, and it needs two passes. You've done pass 1 with results stored in a temporary blob. You could modify the message with something like'RENDER|Source-URL|Pass1-URL'
. Now, assume something goes wrong and your rendering task fails for some reason. Later, when you pick up this message again, you can start from pass 2, instead of from the very beginning.