Amazon SQS - Complete Case Study

Поделиться
HTML-код
  • Опубликовано: 1 дек 2024

Комментарии • 17

  • @nayanmittal1
    @nayanmittal1 9 месяцев назад

    Crisp and perfect example with super awesome explanation

  • @buddhika71
    @buddhika71 4 года назад +6

    Hey Manoj, These are some quality videos. You should have more views than other crappy youtube videos which provide repetitive programming stuff. Keep going. Your videos helped me to achieve the AWS SAA exam as well.

  • @TahirMahmoodHashmi
    @TahirMahmoodHashmi 7 месяцев назад

    You are excellent sir, your aws videos are very informative and very easy to understand.

  • @maduonline
    @maduonline 3 года назад +2

    Helped me to fix an issue. Thank you for the good work!!

  • @yaronnir
    @yaronnir Год назад

    Job well done!. simple and articulate explanation.
    the only thing i would add is the API GATEWAY which was "given" to your solution freely and seamlessly
    other than that - great show of the case study

  • @kunalraut4585
    @kunalraut4585 Год назад

    Very nicely explained

  • @jananathbanuka4994
    @jananathbanuka4994 3 года назад +1

    Thank you for this. Helped me a great time understanding how SQS works.

  • @thetradersbrain7132
    @thetradersbrain7132 3 года назад

    Awesome explanation! much appreciated

  • @nadunovitigla109
    @nadunovitigla109 2 года назад

    thank you sir!!

  • @mayurdevade270
    @mayurdevade270 11 месяцев назад

    Hi, I was looking for scenario when SQS hosting region is down. How can we handle queue content and failover to another region SQS ?

  • @raj.blazers
    @raj.blazers 3 года назад +1

    Once api send the data to AWS it returns the response to the front end right? If that is the case how dead letter queue message will be communicated to the front end?

  • @mliyanage
    @mliyanage 3 года назад

    Great video Manoj as always. btw how did you customize your terminal?

  • @mascadagames
    @mascadagames 2 года назад

    Hi Manoj, great video! Do you have a tutorial about creating the queues on yaml file to not be necessary create they manually?

  • @ig2947
    @ig2947 3 года назад

    Amazing..!!

  • @duke3353
    @duke3353 3 года назад

    Please publish part 03 :) thx
    I had an error using require of AWS SDK.
    I had to change header :
    const SQS = require('aws-sdk/clients/sqs');
    const sqs = new SQS();
    TO
    const AWS = require('aws-sdk');
    const sqs = new AWS.SQS({apiVersion: '2012-11-05'});