Prasad, that was by far the cleanest and most informative serverless demo I have ever seen. Thank you so much for producing this excellent video and for sharing it with us.
Thank you for an illuminating video, Prasad. I had been looking for a good tutorial for Sam-Vscode-Python and this was the perfect fit. I hope it surfaces to the top of the search results when someone searches for SAM, AWS, VSCode and Python. &
Hey Prasad, how did you customize your Terminal to look like this? It feels great. I see that you are using iTerm2. Is that how you were able to customize it? Thanks in advance :)
Thanks very much for this. It really helped clarify my introduction steps i was looking for AWS SAM. I have a question though (1) Supposed I wanted to use a virtual env in my python code as part of development, would i create the venv in just the root folder in this case get-ec2-regions folder? what if i install packages, would i proceed to pip freeze into a requirements.txt file and when i run sam package all these requirements would be taken care before deploying the lambda in AWS?
Yes its possible using SAM local. Also take a look at my other video where I explained lambda development and local testing process using CDK ua-cam.com/video/DUNEuhOQ1k4/v-deo.html
@@PrasadDomala Thanks for your response. I used sam local invoke to test a function but it still deployed in the console whereas I just want to simulate it's behavior with sam without deploying it.
I'm not sure what I'm doing wrong. I've followed the tutorial a few times but keep getting this error when trying to run the local invoke command. 'sam local invoke GetEC2RegionsFunction --no-event' 'Template file not found at ......Documents/codes/sam_test2/template.yml' Note that it's not template.YAML that is in the tutorial. I'm not sure where this reference is coming from when I'm tryint to invoke the function locally.
It was really helpful video, But I have one question suppose I have already created API gateway and I want to deploy the functions to that particular API Gateway . How to achieve this ?
Very crisp and clear tutorial. Thanks you for the information. I am facing an issue. I am using a python package pymysql as well in my code. Now even after all the packages are kept in same folder level of my function, its showing error No module named 'pymysql'. Can you please guide me, on this.
Hi Prasad It would be better if you enlarge fonts and windows so that we can see easily what you are showing .. I liked quality of your video though. Please make video on Sam cli, nodejs, lambda, dynamodB, redis all together Please. Thank you so much
This is a nice tutorial but can you please make a video how can we make a full setup in docker image which is include python pip aws cli and sam cli. or can you give me some suggestion how can i make a docker image in my local Ubuntu computer with the full environment
Hi Prasad Thanks for posting the video I tried it and I am getting an error :Unable to import module 'samapp': No module named samapp I have folder structure as : C:\Shailesh\sam-app this folder has template.yaml yaml details: CodeUri: hello_world/ Handler: samapp.lambda_handler there is another folder hello_world ; it has samapp.py (C:\Shailesh\sam-app\hello_world\samapp.py) samapp.py has def lambda_handler can you please suggest what could be problem? I searched for solution but could not find any
Very nice tutorial Prasad. I am using golang with SAM, I am facing some error as - {"errorType":"exitError","errorMessage":"RequestId: 368b7289-2f30-1fe0-3f7a-0905754853b0 Error: fork/exec /var/task/hello-world: no such file or directory"}. Any idea about this ? I am following Hello-world Golang example.
Man, I want to send you flowers.. I've been having a really hard time over this, thank you so very much.
Thanks a lot Prasad :). It's really helped me to understand how SAM CLI works. Kudos to you.
Thank you I've been two days struggling with this topic and your explanation was very useful to understand how to create a project from 'scratch'.
Prasad, that was by far the cleanest and most informative serverless demo I have ever seen. Thank you so much for producing this excellent video and for sharing it with us.
Man, just wanted to comment this was very helpful and helped me a lot in landing the SAM world. Greetings from Bogotá, Colombia!
Thanks Prasad. This is exactly what I was looking for. Very helpful and to the point tutorial.
Thanks Prasad Now I came to know What is SAM and template file why it is used. Simple and Clearly Explained !!!!
Thanks for explaining in details. Its really helpful. Thanks a ton man.
Thanks for creating this. Going to make my API dev a lot easier!
Great tutorial Prasad! Thanks for spending part of your Christmas making it!!
Nice video clearly explained very useful - would love to see an Alexa version of the same thing. Well done.
wonderful explanation. cleared up so many concepts. Thanks
Thanks a lot sir. Would be obliged forever
Please make font size bigger, its hard to read what you are writing from laptop screen when following along in split screen.
Thanks. Really helpful to start with SAM
Thank you Prasad. Great tutorial on SAM
Thank you for an illuminating video, Prasad. I had been looking for a good tutorial for Sam-Vscode-Python and this was the perfect fit. I hope it surfaces to the top of the search results when someone searches for SAM, AWS, VSCode and Python.
&
Excellent tutorial. Everything is very well explained. Cheers!!
Brilliant explanation. Well done. 👌
Thank you! I just started a new job. I need to master SAM
amazing video, you clearly know your stuff.
Very helpful and well explained. Thank you.
Great Tutorial. Question, how did you get the sam command to work with the bash terminal? I am only able to run mine in powershell or type sam.cmd.
Thank you so much !!, very nice presentation.
Informative thanks 😊
Thanks you so much for this..
You should have zoomed it ...but that's fine ...very informative. Thanks
very clear explanation.
Nice presentation on SAM Local. Does the deployment template include the actual lambda function code?
great video! Could you please tell me the tool you used to create the SAM Workflow diagram, its really cool
Hey Prasad, how did you customize your Terminal to look like this? It feels great. I see that you are using iTerm2. Is that how you were able to customize it?
Thanks in advance :)
Thanks very much for this. It really helped clarify my introduction steps i was looking for AWS SAM. I have a question though (1) Supposed I wanted to use a virtual env in my python code as part of development, would i create the venv in just the root folder in this case get-ec2-regions folder? what if i install packages, would i proceed to pip freeze into a requirements.txt file and when i run sam package all these requirements would be taken care before deploying the lambda in AWS?
Thanks for the video. Is it possible to run the lambda function locally without it running within the AWS console?
Yes its possible using SAM local. Also take a look at my other video where I explained lambda development and local testing process using CDK
ua-cam.com/video/DUNEuhOQ1k4/v-deo.html
@@PrasadDomala Thanks for your response. I used sam local invoke to test a function but it still deployed in the console whereas I just want to simulate it's behavior with sam without deploying it.
Thank you! This is helpful. If you can zoom in the font, that will be even better!
Thank you, very helpful. the screen visibility is very law, you could have zoom in while recording it
it is posible to run in same way a spring boot application?
Well explained mate! Thanks for sharing! What tools did you use to produce this video?
Thank you, this has been very helpful.
I'm not sure what I'm doing wrong. I've followed the tutorial a few times but keep getting this error when trying to run the local invoke command. 'sam local invoke GetEC2RegionsFunction --no-event'
'Template file not found at ......Documents/codes/sam_test2/template.yml' Note that it's not template.YAML that is in the tutorial. I'm not sure where this reference is coming from when I'm tryint to invoke the function locally.
Thanks!!! Nice video tutorial.
It was really helpful video, But I have one question suppose I have already created API gateway and I want to deploy the functions to that particular API Gateway . How to achieve this ?
How to check if docker is running
It would be a great help if you show how to test lambda locally using java runtime.
Prasad, Thank you. Awesome material. Please create a playlist for AWS Serverless course.
Cool demo. Thank you.
Can you please show us how to setup the AWS cdk + Typescript lambda + run and debug locally?
Sure Dhiraj. I am in the process of making that video. Will post it soon.
Develop, Test & Deploy TypeScript Lambda Functions Using AWS CDK
ua-cam.com/video/DUNEuhOQ1k4/v-deo.html
There you go Dhiraj
do you have an example of how to debug locally (like putting a breakpoint)
Could you please tell what color theme you are using and which fonts to your VS code ? Looks really good.
Its conalt2
@@PrasadDomala Thank you ! And which font please ? It looks really relaxed for the eyes and I could use it.
I guess the font is default. I haven’t set anything explicitly apart from the theme default
@@PrasadDomala Thanks very much. Appreciate the prompt replies.
This was very useful..
Can you make a video where dependency packages are deployed using SAM. I am really stuck with that....
Very crisp and clear tutorial. Thanks you for the information. I am facing an issue. I am using a python package pymysql as well in my code. Now even after all the packages are kept in same folder level of my function, its showing error No module named 'pymysql'. Can you please guide me, on this.
Thanks, this was awesome.
THANK YOU
Thanks Prasad. Can you please create a tutorial on SAM Lambda Dynamodb even
Yes, How to integrate inside a local lambda also a local dynamobd. Thanks
I installed visual studio but "code" is not recognizable in my terminal
Follow these instructions : code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line
how do we deploy django using SAM?
Hi Prasad
It would be better if you enlarge fonts and windows so that we can see easily what you are showing .. I liked quality of your video though. Please make video on Sam cli, nodejs, lambda, dynamodB, redis all together Please.
Thank you so much
Thanks
This is a nice tutorial but can you please make a video how can we make a full setup in docker image which is include python pip aws cli and sam cli. or can you give me some suggestion how can i make a docker image in my local Ubuntu computer with the full environment
I am using aws ec2 how to configure all pre_ request
Hi Prasad Thanks for posting the video
I tried it and I am getting an error :Unable to import module 'samapp': No module named samapp
I have folder structure as :
C:\Shailesh\sam-app
this folder has template.yaml
yaml details:
CodeUri: hello_world/
Handler: samapp.lambda_handler
there is another folder
hello_world ; it has samapp.py (C:\Shailesh\sam-app\hello_world\samapp.py)
samapp.py has def lambda_handler
can you please suggest what could be problem? I searched for solution but could not find any
I am having the same issue. No luck so far. Can anybody help?
Very nice tutorial Prasad.
I am using golang with SAM, I am facing some error as - {"errorType":"exitError","errorMessage":"RequestId: 368b7289-2f30-1fe0-3f7a-0905754853b0 Error: fork/exec /var/task/hello-world: no such file or directory"}.
Any idea about this ? I am following Hello-world Golang example.
Nice tutorial!
Put Videos about Kinesis and Elastic Search, How it is used in Real time Environment & Using Lambda How to do it .
Who os that michine prasad
I am using Mac. But the process would be same for windows as well
@@PrasadDomala how did you install aws toolkit on vs code?>
You could have used a better theme and font settings.
Having an AWS account is not necessary for local environment! You should have mentioned and show demo without that.