That's a comprehensive guide if ever I saw one. This is a no-nonsense, straight to the point, with examples that work. Very well done!
@RahulNath2 жыл бұрын
Happy to hear that. Do checkout my AWS series here bit.ly/aws-net-series. Also do drop in topic suggestions if you have any!
@MarianoGomezBidondo Жыл бұрын
As always, clear and straight to the point, great content! Thank you!
@rohit7042 жыл бұрын
You are making videos straight to the point . Other wise KZbin is full of garbage. Please make videos on micro services and how to handle multiple endpoint api transactions .
@RahulNath2 жыл бұрын
Thank you Rohit. I have some videos planned out. Hope you are enjoying the AWS Series bit.ly/aws-net-series
@NimashDilanka3 ай бұрын
Quite Impressive video. pretty clear!! thanks for this
@RahulNath3 ай бұрын
Glad it was helpful Nimash! Do check out the AWS Series bit.ly/aws-net-series
@amarnatha16146 ай бұрын
It's a very cool explanation...so easy to understand thank you sir
@RahulNath6 ай бұрын
You are most welcome! Here is the full AWS Series bit.ly/aws-net-series Do let me know if you have any topic suggestions.
@mryildiz7022 жыл бұрын
I like the way you teach sqs: simple and straight to the point. Do you also have vidoes on AWS Event Bridge and Step Functions? I would like to watch your approach on them :)
@RahulNath2 жыл бұрын
Thank you Recep, glad you are liking the style. I don’t have yet on those topics, thank you for the suggestion. I’ll add it to my list. Here is the full AWS playlist kzbin.info/aero/PL59L9XrzUa-kl89ThijziX03fgTrbZCd7
@mryildiz7022 жыл бұрын
@@RahulNath I have finished 5 videos in them and gave them likes. And, I will watch remaining videos in this list too :)
@RahulNath2 жыл бұрын
@@mryildiz702 Wow thank you ! So guess you are liking them then. I also have a Udemy course on Lambda here if that interests you www.udemy.com/course/aws-lambda-dotnet/?couponCode=AUG-WITH-RAHUL
@RahulNath2 жыл бұрын
@@mryildiz702 A lot of what’s in the course is already covered here though, just that’s it’s more structured 😀 Have a great weekend
@WhisperingBengal2 жыл бұрын
Hi Rahul, Thanks for doing this. Your videos are really special and helps the community because each concept is explained in detail and practical in nature. Please keep doing what you are doing. I have one small request, can you do a video on how to combine multiple cloud provider services in a better way, for example my solution will use both aws parameter store and azure keyvault, how can we make a adapter library which can deal with such scenario s
@RahulNath2 жыл бұрын
Thank you and happy you are liking the content Nilanjan! I have two videos that show how to connect to Parameter Store and Key Vault. Both uses Configuration Providers to extend the .NET configuration. This is agnostic of cloud provider and will work regardless of where you are hosting. The authentication mechanism will slightly be different based on where your application is hosted. www.rahulpnath.com/blog/connect-net-core-to-azure-key-vault-in-ten-minutes/ www.rahulpnath.com/blog/aws-parameter-store/ Let me know if that helps or if you have any additional questions
@kresnofatihimani50732 жыл бұрын
in kubernetes context, if the consumer app is created as a pod, would it require a 'service' to listen to SQS? if i want to increase the number of consumer pod, will it be consumed by all the pods causing each pod to do the exact same process? thx. awesome video
@YoyoToyota-s5w Жыл бұрын
Hi Rahul, It's a helpful video. I am using SQS together with SNS. When I create a SQS queue with an access policy, AWS appends another policy automatically. I don't know why and dont want that. What could be the possible reason AWS is doing that?
@RahulNath Жыл бұрын
I do talk about SNS to SQS and the setup here www.rahulpnath.com/blog/amazon-sns-to-lambda-or-sns-sqs-lambda-dotnet/ Does that answer you question ? If not what policy are you seeing getting added - if you can provide more details that’ll be helpful
@jackdaniel49362 жыл бұрын
Hello Rahul, thanks for great explanation. I am wondering how we can add retry policies to Sqs in .Net Core. For example i want to send a message to Sqs and i want to retry sending if it fails due to network errors or other connection errors. Is there any way to do this? Thanks 💯
@RahulNath2 жыл бұрын
I talk about error handling and Dead letter queues at 29:16 Was that what you were looking at? Based on the maximum receive count it will retry the message. You can also read the associated blog post here www.rahulpnath.com/blog/amazon-sqs/
@sandanuwan44416 ай бұрын
Thanks for the Video Rahul. I have to ask a question regarding sending a multiple messages to SQS. suppose If I don't know how many request I have to send , In that case If I use send multiple message to SQS, I will send only one massage or more than one massages right ? is this correct ? or with send multiple message into SQS, do we need to always send more than one message at a time.
@RahulNath6 ай бұрын
I think sending 1 or more messages in the batch request should be fine.
@sandanuwan44416 ай бұрын
@@RahulNath Thanks Rahul
@shauncs2 жыл бұрын
Hi Rahul, is it a good practice to use SQS to upload files to S3 buckets? I'm working on a file upload solution and trying to send files as a message to SQS (a byte array). From there I triggered a Lambda to write that to S3. At the moment I'm uploading files to S3 from my API. But I have to consider what happens when Network errors occurred. This is where I think I can keep them in a queue for later processing (when the Network is available). Any thoughts on this idea?
@RahulNath2 жыл бұрын
I would directly store to S3 like what you are doing currently. Otherwise, you are moving data/bytes multiple times from your App - SQS and to S3. Since both S3 and SQS are AWS hosted the uptime guarantee is all the same, there is no advantage in doing it via SQS. If you want to trigger some action after the file is uploaded you could trigger it via SQS/SNS. Does that help or feel free to ask if you any additional questions?
@shauncs2 жыл бұрын
@@RahulNath Thanks for the reply
@RahulNath2 жыл бұрын
@@shauncs have you considered this option of directly uploading to S3? aws.amazon.com/blogs/compute/uploading-to-amazon-s3-directly-from-a-web-or-mobile-application/ You could also think about client local storage (browser local store or native store if exe) and uploading retries from there . Uploading to SQS failing has the same likelihood of S3. Does that help ?
@shauncs2 жыл бұрын
@@RahulNath Thanks for the suggestion. I'll have a look. !