У нас вы можете посмотреть бесплатно An introduction to Amazon SQS with AWS Lambda (Using .NET Core and C#) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video of the AWS series, I will discuss Amazon SQS (Simple queuing system). Amazon SQS (or Simple Queue Service) is a fully managed serverless queuing service provided by AWS. SQS provides two types of message queue, standard, and FIFO. Standard queue provides best-effort ordering, at least once delivery of the message with maximum throughput. FIFO as the name suggests guarantee order of message. Advantages of SQS No administrative overhead as AWS manages everything. SQS provides server-side encryption should we need secure communication across services. SQS automatically scales out based on demand. SQS provides reliable delivery of messages irrespective of load. 00:32 - What is Amazon SQS? 01:17 - Advantages of using Amazon SQS 02:06 - Create a new SQS using AWS Console 06:15 - Create new Lambda to listen to SQS messages 08:12 - Deploy the newly created Lambda 06:55 - Attached the AWS Lambda function to the Amazon SQS queue using AWS Console 09:35 - Send a message to the SQS queue 09:55 - Check response on Lambda after being triggered by the SQS message 11:00 - Update an existing Lambda to send message to the SQS queue 14:20 - Test end to end from sending message to SQS from a Lambda to the message delivered to another Lambda Previous videos in the series: Lambda Introduction: • Introduction to building AWS Lambda using ... API Gateway Introduction: • An Introduction to AWS API Gateway with AW... DynamoDB Introduction: • An Introduction to AWS DynamoDB (Accessing...