what is the most similar queue service in Azure to Aws SqS?

i am using AWS SqS and as part of migration to Azure i am testing Azure testing Azure queue and also rabbitmq . the App is in python so what is the most similar ?

0

1 Answer

There are many alternative available, i would recommend you to use Service bus queue.

from azure.servicebus import QueueClient, Message 

Create the QueueClient

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

Send a test message to the queue

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

Here is the documentation on how to get started with python.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like