#awslambda — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #awslambda, aggregated by home.social.
-
I'm moving the backend of our internal system from AWS Lambda/API Gateway to Cloudflare Pages Functions. Wow, it's so much faster even if it uses the same DynamoDB and Algolia for search.
-
Quarkus AWS Lambda HTTP has a genuinely useful local dev trick: the mock event server lets `localhost:8080` behave enough like API Gateway and Lambda that you can keep hot reload while still exercising Lambda request context and raw events.
I built a small quote API, pushed handcrafted HTTP API events into `/_lambda_`, and then proved the packaged function again with `sam local start-api`.
https://www.the-main-thread.com/p/quarkus-aws-lambda-http-localhost
-
Quarkus AWS Lambda HTTP has a genuinely useful local dev trick: the mock event server lets `localhost:8080` behave enough like API Gateway and Lambda that you can keep hot reload while still exercising Lambda request context and raw events.
I built a small quote API, pushed handcrafted HTTP API events into `/_lambda_`, and then proved the packaged function again with `sam local start-api`.
https://www.the-main-thread.com/p/quarkus-aws-lambda-http-localhost
-
At Lead Bank, synchronous telemetry flushing caused intermittent exporter stalls to surface as user-facing 504 gateway timeouts.
By using the AWS Lambda Extensions API and goroutine chaining in Go, telemetry flush work was moved off the response path - allowing immediate responses while preserving full observability without data loss.
Read the #InfoQ article by Melvin Philips for more insights: https://bit.ly/3OhOouD
-
At Lead Bank, synchronous telemetry flushing caused intermittent exporter stalls to surface as user-facing 504 gateway timeouts.
By using the AWS Lambda Extensions API and goroutine chaining in Go, telemetry flush work was moved off the response path - allowing immediate responses while preserving full observability without data loss.
Read the #InfoQ article by Melvin Philips for more insights: https://bit.ly/3OhOouD
-
Want to monitor only AWS Lambdas in Zabbix? Remember to add `ec2:DescribeRegions` action to your access policy🤐
For some reason
#zabbix #aws #lambda #awslambda #awsiam -
Want to monitor only AWS Lambdas in Zabbix? Remember to add `ec2:DescribeRegions` action to your access policy🤐
For some reason
#zabbix #aws #lambda #awslambda #awsiam -
AWS Cross-Account Lambda Access to S3 — A Step-by-Step Guide
#AWSLambda
https://www.xtivia.com/blog/aws-cross-account-lambda-access-to-s3-step-by-step-guide/ -
AWS Cross-Account Lambda Access to S3 — A Step-by-Step Guide
#AWSLambda
https://www.xtivia.com/blog/aws-cross-account-lambda-access-to-s3-step-by-step-guide/ -
Serverless giống taxi: không cần sở hữu “xe” (máy chủ), chỉ trả tiền khi code chạy. Truyền thống: trả phí 24/7 dù không hoạt động; Serverless: thanh toán dựa trên thời gian thực thi, phù hợp với traffic không ổn định, API, webhook. Các dịch vụ phổ biến: AWS Lambda, Vercel Functions, Cloudflare Workers.
#Serverless #CôngNghệ #AWSLambda #Vercel #Cloudflare #Tech #CôngNghệMâyhttps://dev.to/esreekarreddy/serverless-explained-like-youre-5-5e14
-
Serverless giống taxi: không cần sở hữu “xe” (máy chủ), chỉ trả tiền khi code chạy. Truyền thống: trả phí 24/7 dù không hoạt động; Serverless: thanh toán dựa trên thời gian thực thi, phù hợp với traffic không ổn định, API, webhook. Các dịch vụ phổ biến: AWS Lambda, Vercel Functions, Cloudflare Workers.
#Serverless #CôngNghệ #AWSLambda #Vercel #Cloudflare #Tech #CôngNghệMâyhttps://dev.to/esreekarreddy/serverless-explained-like-youre-5-5e14
-
Lợi ích của AWS Lambda khi phát triển ứng dụng serverless:
- Chạy code không cần quản lý máy chủ
- Tự động scale theo lưu lượng truy cập
- Chi trả theo thời gian sử dụng (tiết kiệm chi phí)
- Kết hợp dễ dàng với các dịch vụ AWS khác
Ví dụ: Hàm Lambda xử lý ảnh trên S3 bằng Node.js/Python, tự động resize khi upload.Hãy tận dụng khả năng auto-scaling và mô hình giá linh hoạt để xây dựng ứng dụng hiệu quả!
#AWSLambda #Serverless #CloudComputing #Tech
#Lambda #MáyChủẢo #ĐiệnToánĐámMây #CôngNghệ -
Lợi ích của AWS Lambda khi phát triển ứng dụng serverless:
- Chạy code không cần quản lý máy chủ
- Tự động scale theo lưu lượng truy cập
- Chi trả theo thời gian sử dụng (tiết kiệm chi phí)
- Kết hợp dễ dàng với các dịch vụ AWS khác
Ví dụ: Hàm Lambda xử lý ảnh trên S3 bằng Node.js/Python, tự động resize khi upload.Hãy tận dụng khả năng auto-scaling và mô hình giá linh hoạt để xây dựng ứng dụng hiệu quả!
#AWSLambda #Serverless #CloudComputing #Tech
#Lambda #MáyChủẢo #ĐiệnToánĐámMây #CôngNghệ -
AWS launched Durable Functions for Lambda - a new capability that lets developers use standard Lambda functions to build complex, multi-step workflows.
They can track progress, automatically retry on failures, and even pause execution for up to 1 year at defined steps - all without paying for idle compute during those waits.
Learn more: https://bit.ly/3KuDuQf
-
AWS launched Durable Functions for Lambda - a new capability that lets developers use standard Lambda functions to build complex, multi-step workflows.
They can track progress, automatically retry on failures, and even pause execution for up to 1 year at defined steps - all without paying for idle compute during those waits.
Learn more: https://bit.ly/3KuDuQf
-
Running #Quarkus on #AWSLambda “out of the box” can lead to slow starts and missed optimizations. Vadym Kazulkin walks through five concrete setups—from vanilla Java to #SnapStart priming & native #GraalVM.
Make every millisecond count: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
@graalvm @awscloud -
Running #Quarkus on #AWSLambda “out of the box” can lead to slow starts and missed optimizations. Vadym Kazulkin walks through five concrete setups—from vanilla Java to #SnapStart priming & native #GraalVM.
Make every millisecond count: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
@graalvm @awscloud -
Comparing AWS Lambda ARM64 vs. x86_64 Performance Across Runtimes in Late 2025
#HackerNews #AWSLambda #ARM64 #x86_64 #Performance #Runtimes #2025
-
Comparing AWS Lambda ARM64 vs. x86_64 Performance Across Runtimes in Late 2025
#HackerNews #AWSLambda #ARM64 #x86_64 #Performance #Runtimes #2025
-
Setting up Java on #AWSLambda often feels like guesswork. Cold starts, unclear IaC, performance gaps. @VKazulkin delivers tested, runnable solutions—from #Quarkus setup to #SnapStart tuning & Native deployment.
Build smarter: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
#GraalVM @awscloud @QuarkusIO -
Setting up Java on #AWSLambda often feels like guesswork. Cold starts, unclear IaC, performance gaps. @VKazulkin delivers tested, runnable solutions—from #Quarkus setup to #SnapStart tuning & Native deployment.
Build smarter: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
#GraalVM @awscloud @QuarkusIO -
#AWSLambda now supports #GitHubActions!
Devs can now deploy changes to Lambda functions using declarative configuration in GitHub Actions workflows.
The new option supports both .zip file and container image deployments.
🔗 Read more: https://bit.ly/4mW3j9b
-
#AWSLambda now supports #GitHubActions!
Devs can now deploy changes to Lambda functions using declarative configuration in GitHub Actions workflows.
The new option supports both .zip file and container image deployments.
🔗 Read more: https://bit.ly/4mW3j9b
-
AWS Lambda wants to banish cold starts like an exorcist with a magic wand named #Porffor 🪄🔮. Apparently, it's a JS engine that turns your beloved #JavaScript into a tiny "1MB, fast millisecond-level binary" – because compiling JS is now as easy as waving a 🧙♂️ wand. Meanwhile, Node and Bun continue to offer their "bundle up and deal with it" solutions, proving that not all magic tricks are created equal 🎩🐇.
https://goose.icu/lambda/ #AWSLambda #ColdStarts #NodeBun #HackerNews #ngated -
AWS Lambda wants to banish cold starts like an exorcist with a magic wand named #Porffor 🪄🔮. Apparently, it's a JS engine that turns your beloved #JavaScript into a tiny "1MB, fast millisecond-level binary" – because compiling JS is now as easy as waving a 🧙♂️ wand. Meanwhile, Node and Bun continue to offer their "bundle up and deal with it" solutions, proving that not all magic tricks are created equal 🎩🐇.
https://goose.icu/lambda/ #AWSLambda #ColdStarts #NodeBun #HackerNews #ngated -
Eliminating JavaScript cold starts on AWS Lambda
#HackerNews #Eliminating #JavaScript #cold #starts #on #AWS #Lambda #AWSLambda #JavaScript #ColdStarts #Serverless #Computing #CloudOptimization
-
Eliminating JavaScript cold starts on AWS Lambda
#HackerNews #Eliminating #JavaScript #cold #starts #on #AWS #Lambda #AWSLambda #JavaScript #ColdStarts #Serverless #Computing #CloudOptimization
-
#RustLang + #AWSLambda = High-Performance Serverless
Explore how Rust’s performance & efficiency perfectly complement Lambda’s scalability & availability.
🎥 Watch the #InfoQ talk 👉 https://bit.ly/45p3VNt
📝 #transcript included
-
#RustLang + #AWSLambda = High-Performance Serverless
Explore how Rust’s performance & efficiency perfectly complement Lambda’s scalability & availability.
🎥 Watch the #InfoQ talk 👉 https://bit.ly/45p3VNt
📝 #transcript included
-
Java’s cold start problem is real, especially on #AWSLambda. Slow response times can break SLAs & user trust. @VKazulkin shows how #SnapStart & priming with #CRaC reduce latency without rewriting your entire stack.
Learn more: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
-
Java’s cold start problem is real, especially on #AWSLambda. Slow response times can break SLAs & user trust. @VKazulkin shows how #SnapStart & priming with #CRaC reduce latency without rewriting your entire stack.
Learn more: https://javapro.io/2025/08/05/how-to-develop-run-and-optimize-quarkus-web-application-on-aws-lambda/
-
Learn how to implement custom logging for AWS applications using Lambda, integrating with Slack for real-time alerts and storing logs in DynamoDB for auditing. https://hackernoon.com/how-to-build-custom-logging-for-aws-applications-with-slack-integration #awslambda
-
Learn how to implement custom logging for AWS applications using Lambda, integrating with Slack for real-time alerts and storing logs in DynamoDB for auditing. https://hackernoon.com/how-to-build-custom-logging-for-aws-applications-with-slack-integration #awslambda
-
You wanted Java 24? How adorable. 🤡
Fun fact: Ancient relics like Maven happily obey any Java version 🏺, but modern, cutting-edge tools. Gradle, AWS Lambda, and more require new releases just to function. 🔄 Because nothing says progress like mandatory dependencies. 🎭
Meanwhile, Kubernetes & Maven sit back, laughing. 😏
They do whatever they want. 🚀
They are independent. 🔓
Unlike you. 🫠#DevLife #ProgrammingMemes #SoftwareEngineering #CodeHumor #programming #coding #Maven #Gradle #AWSLambda #DevOps #DependencyHell #CI/CD #BuildFails #JustDevThings #Relatable #WhyIsThisSoAccurate #EngineerCult
-
kintone × AWS Lambda 連携を学んできたのでまとめてみた【devCamp】
https://qiita.com/kanekoh/items/d2d90d95a4c105e66976?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items -
Introducing Vercel Fluid! An elastic compute model that lets a single worker handle multiple requests - just like a traditional server while preserving the elasticity of serverless.
Perfect for AI & long-running tasks!
Get all the details: https://bit.ly/3FaDZf5
-
Introducing Vercel Fluid! An elastic compute model that lets a single worker handle multiple requests - just like a traditional server while preserving the elasticity of serverless.
Perfect for AI & long-running tasks!
Get all the details: https://bit.ly/3FaDZf5
-
Building and Debugging .NET Lambda applications with .NET Aspire (Part 2)
https://aws.amazon.com/blogs/developer/building-lambda-with-aspire-part-2/
#aws #aspire #dotnet #awslambda #cloud #cloudnative #dotnetaspire