Recently, I stood up a proof of concept lambda running using the AWS Lambda zip from your packages page. It was a great help, thank you for providing it.
Now, I'm wondering what the performance difference would be if the lambda was using arm64 instead of amd64. This AWS documentation says:
Do you think it would be possible in the near term for you to offer a lambda package that targets arm64? If not I think I can still get something functional using one of the arm64 builds from the latest page.
Any tips or things to look out for before I start on this project would be very much appreciated. I'm planning to use docker with a base image public.ecr.aws/lambda/dotnet:6-arm64 from the Amazone ECR Public Gallery.
Thanks
Now, I'm wondering what the performance difference would be if the lambda was using arm64 instead of amd64. This AWS documentation says:
Lambda functions that use arm64 architecture (AWS Graviton2 processor) can achieve significantly better price and performance than the equivalent function running on x86_64 architecture. Consider using arm64 for compute-intensive applications such as high-performance computing, video encoding, and simulation workloads.
Do you think it would be possible in the near term for you to offer a lambda package that targets arm64? If not I think I can still get something functional using one of the arm64 builds from the latest page.
Any tips or things to look out for before I start on this project would be very much appreciated. I'm planning to use docker with a base image public.ecr.aws/lambda/dotnet:6-arm64 from the Amazone ECR Public Gallery.
Thanks