Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
blog.cloudflare.com
Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
1–10 of 65 posts
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#2Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#3Can we see the code that was used for testing Lambda and Workers?
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#4As you're guessing that Cloudfare superior JS runtime plays a big role, it could be interesting to see if it can compete against Golang Lambda as well.
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#5The value comes from 1) What can trigger that code to run and 2) What services that code can interact with.
And on those two points, AWS still wins hands down. They have by far the most possible triggers for Lambda, and they have by far the most services that Lambda can interact with.
It's cool that Cloudflare built something faster, but unless you're running in a vacuum, speed is the least of your concerns.
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#6Comparing them to Lambda@Edge makes sense, but Lambda@Edge is not a very good product.
(Full disclosure: my company competes with Cloud Flare Workers).
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#7Have you think about including Golang based Lambda function in your benchmark? As you're guessing that Cloudfare superior JS runtime plays a big role, it could be interesting to see if it can compete against Golang Lambda as well.
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#8At least you acknowledge that it's a bit silly to use a global benchmark to compare a global service with an intentionally-regionalized service.
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#9>To be fair, comparing my Lambda, which only runs in us-east-1 (Northern Virginia, USA), to a global service like Workers is a a little unfair. At least you acknowledge that it's a bit silly to use a global benchmark to compare a global service with an intentionally-regionalized service.
Re: Serverless Performance: Cloudflare Workers, Lambda and LambdaEdge
#10The value of any function-as-a-service is the ecosystem within which it sits. Pretty much all of them are the same: upload your code, we will run it. The value comes from 1) What can trigger that code to run and 2) What services that code can interact with. And on those two points, AWS still wins hands down. They have by far the most possible triggers for Lambda, and they have by far the most services that Lambda can…