Azure中与Aws SqS最相似的队列服务是什么?

时间:2019-05-26 17:06:25

标签: python amazon-web-services azure amazon-sqs

我正在使用AWS SqS,并且作为向Azure迁移的一部分,我正在测试Azure测试Azure队列https://docs.microsoft.com/en-us/azure/storage/queues/storage-python-how-to-use-queue-storage以及Rabbitmq https://www.rabbitmq.com/tutorials/tutorial-one-python.html。该应用程序是在python中,所以最相似的是什么?

1 个答案:

答案 0 :(得分:1)

有很多可用的替代方法,我建议您使用Service bus queue

from azure.servicebus import QueueClient, Message

创建QueueClient

queue_client = QueueClient.from_connection_string("<CONNECTION STRING>", "<QUEUE NAME>")

将测试消息发送到队列

msg = Message(b'Test Message')
queue_client.send(msg)

以下是有关 python 入门的文档。