simple and crispy with tones of Experience knowledge. Keep it up !
@mohitmansi1111 ай бұрын
Good demo video . Explanation of each and every step is spot on .
@listentolearn236310 ай бұрын
Thank you :)
@supersoniqamanyi30753 күн бұрын
Simply Amazing Teacher.
@souravsinha53303 ай бұрын
Well explained mam, learning from ur vast experience.
@vikasbhardwaj898911 ай бұрын
Thank you for explaining it very well.
@listentolearn236311 ай бұрын
You are welcome! :)
@kapilchhipa214313 күн бұрын
do we get logs of sqs and sns as well? what if we dont see any logs in lambda. how do we debug ? should we see logs of sns then sqs?
@Ksr37405 ай бұрын
Hi there, i have actually run into a problem. when i try to add the lambda trigger into sqs it throws an error message "Error code: InvalidParameterValueException. Error message: The provided execution role does not have permissions to call DeleteMessage on SQS" and i have used the same policy for the sqs as shown in this video. any idea how to solve this?
@maciekpaciarski93434 ай бұрын
where exactly did you get the added policy from github for Lambda ?From creator of policy ?
@CHiRaStar110 ай бұрын
Exceptional. Very insightful. Is there any possibility of connecting with you discuss about work
@listentolearn236310 ай бұрын
thanks :) I can reply here..
@vasugoriya145210 ай бұрын
Why we need to create sns and sqs instead of we can directly invoke lambda from s3
@basavarajpn480110 ай бұрын
If there are 1000files loaded Into s3bucket lambda can handle only 1000functions in concurrent run at a time ,so if in case there is SQS,sqs holds the messages from s3 events and queues it and passes to lambda to process all files with out any issues
@listentolearn236310 ай бұрын
Hello, thanks for you interest.. SNS SQS pattern will help in parallel processing by distributing the messages to various queues based on several attributes.
@muqtadirahmd Жыл бұрын
Hi, great video and thanks for uploading. I have a question. When would I want to add a SNS and SQS service in my architecture when I know I can trigger a Lambda directly from S3? Can you please tell the use cases when it would be helpful to do so. Thanks in advance!
@listentolearn2363 Жыл бұрын
Thanks Muqtadirahmd! SNS SQS pattern will help in parallel processing by distributing the messages to various queues based on several attributes.
@raqueseharris4 ай бұрын
if you run into the problem of "Error code: InvalidParameterValueException. Error message: The provided execution role does not have permissions to call DeleteMessage on SQS" Follow these instructions: Go to IAM in the AWS Console Click on roles Select your Lambda function execution role or create one if you don't already have Add the AWS managed LambdaSQSQueueExecutionRole policy to the role. The policy contains all the permissions to call the required actions on SQS from Lambda. The ARN of the policy is arn:aws:iam::aws:policy/service-role/AWSLambdaSQSQueueExecutionRole. Save the role, and then try again to add the trigger. This time it will work fine.
@ĐạtNguyễn-o2e2h16 күн бұрын
10:22 you should edit "arn:aws:sqs:us-east-1: 609292000349:q1" -> "arn:aws:sqs:us-east-1: 609292000349:queue1"
@yaminisingh72717 ай бұрын
HI, demn girl you explained it so well. I have a question, if we follow the exact pipeline and in the lambda function write a code to connect to ec2 instance and over that ec2 use the newly added file in s3 bucket input for a python code for some calculation. It should work fine right. For ex : - upload the file in s3 -> sns topic-> sqs que -> lambda -> ec2 (run and connect) -> runs the python file.(command given in lambda function). correct?
@ThangTran-hi3es6 ай бұрын
Thank you, great content 🎉
@nikitanagarkar16437 ай бұрын
Hi , will this work for prefixes within s3 bucket?
@surajgusain36564 ай бұрын
just the perfect and the crisp one....thnks...
@JosephOfobuike Жыл бұрын
Hi there. This is a very straight forward easy to understand tutorial. Do tell, did the SQS policy change? The policy you posted on Github is different from what I on your screen.
@listentolearn2363 Жыл бұрын
Thanks :) please use the policy in GitHub. Thanks
@HemaSri-e5n5 ай бұрын
Can we create sns topic without changing access policy to advanced
@denisafonkin879510 ай бұрын
what is the "arn:aws:sqs:::q1" ?
@listentolearn23639 ай бұрын
that is the arn of the queue. please replace and with actual values
@hector9079 Жыл бұрын
con que programa haces tus graficos ?
@listentolearn2363 Жыл бұрын
ppt
@avulalakshmi Жыл бұрын
Very useful topic
@listentolearn2363 Жыл бұрын
Thank you, glad you liked it! :)
@pranavswaroop523218 күн бұрын
Thank you so much!
@an8594 ай бұрын
Thanks for the information....
@deepak_putta_ Жыл бұрын
good explanation
@listentolearn2363 Жыл бұрын
Thanks :)
@bhumikalalchandani32111 ай бұрын
Coudnt get how file 2 on reiploaded went to queue2 ....anyone😢...ie by default file queue 1 file2 queuue 2 so onn...
@listentolearn236311 ай бұрын
Hi, It is because of the Subscription filter policy set in the SNS while adding the queue to it. Pleas see from 14:45 in the video.