AWS LocalStack SQS - Sending and processing message from Python boto3

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ม.ค. 2025

ความคิดเห็น • 7

  • @karinaklinkeviciute2444
    @karinaklinkeviciute2444 2 ปีที่แล้ว +1

    This video helped me to set up my localstack properly, thanks.

  • @halflearned2190
    @halflearned2190 2 ปีที่แล้ว +1

    Very useful, thank you!

  • @TarunSingh-je9my
    @TarunSingh-je9my 4 ปีที่แล้ว +1

    The videos on SQS are really good. Could you please upload few videos on SNS also?

    • @mdjunaidalam1160
      @mdjunaidalam1160  4 ปีที่แล้ว +1

      Thanks Tarun for your kind appreciation. Sure will try to create a video on SNS whenever I get time.

  • @mohamadnourbader1068
    @mohamadnourbader1068 4 ปีที่แล้ว +1

    Hello, thanks for this tutorial but I have a question. if I want to send a list of numbers to the AWS, to make some mathematical process on these numbers then return the result to the client. The process will be the same of sending text messages?. like if I send 4 45 23 67 8 6 in the message the AWS will take it from SQS as a list of numbers?

    • @mdjunaidalam1160
      @mdjunaidalam1160  4 ปีที่แล้ว

      Yes @Mohamadnour Bader, you can send even numbers also in the JSON String which would pass as String only and on the consuming application you can parse those string back as number and process... Messaging generally uses string format to exchange data so any disparate system can exchange data and it is up to the consumer application to handle and process whichever way they want.