Lambda cold start times in .NET6: ARM vs. x64
Cold start time can be an important metric to optimize in a serverless application. Does choice of a CPU architecture impact cold start time in AWS?
Cold start time can be an important metric to optimize in a serverless application. Does choice of a CPU architecture impact cold start time in AWS?
Today, I spent some time trying to publish a .NET 6 AWS Serverless Application that consisted of: I made sure that each a configuration for functions targeting arm64 differed by setting the following non-default property in the serverless.template file: A problem: Internal Server Error from arm64 lambdas Unfortunately, after I published the application, I noticed … Read more
When I created my first AWS Serverless application from a template (a blueprint) in Visual Studio, I expected that I could just run it locally the same way as I always run Azure Functions. However, I received the following error: Unable to run your project. The “RunCommand” property is not defined. I cannot imagine working … Read more