Remix.run Logo
Comparing AWS Lambda ARM64 vs. x86_64 Performance Across Runtimes in Late 2025(chrisebert.net)
66 points by hasanhaja 6 hours ago | 21 comments
greatgib an hour ago | parent | next [-]

I would not be surprised that Rust be faster than Python, but looking at the code of his Benchmarks, I'm not sure that it really means anything.

For example, the "light" test will do calls to "dynamodb". Maybe you benchmark python, or you benchmark the aws sdk implementation with different versions of python, or just you benchmark average dynamodb latencies at different times of the day, ...

And, at least for Python, his cpu and memory test code looks like to be especially specific. For example, if you use "sha256" or any other hashlib, you will not really benchmark python but the C implementation of the hashlib, that might depend on the crypto or gcc libraries or optimization that was used by AWS to build the python binaries.

ajross 18 minutes ago | parent [-]

Yeah, having a native binary be only 2x faster than CPython, or CPython showing 4x (!!) advantage vs. V8 seems really suspicious. This benchmark suite is probably good for looking at CPU architecture deltas on identical source code (which seems to be what it was good for), but trying to intuit language/runtime behavior from it seems very dangerous.

torginus 2 hours ago | parent | prev | next [-]

What I don't get is why is it that Node is dog slow. Seriously it seems borderline unusable.

In terms of perf, Node has a pretty snappy JIT, and seems to perform OK in the browser, but this seems like something's not right here.

~200ms requests even in the light case are on the very brink of barely acceptable.

On the other hand, Python performs very well, but it's alarming to see it gets slower in every release by a significant margin.

tybit 4 hours ago | parent | prev | next [-]

It’s interesting that the author chose to use SHA256 hashing for the CPU intensive workload. Given they run on hardware acceleration using AES NI, I wonder how generally applicable it is. Still interesting either way though, especially since there were reports of earlier Graviton (pre v3) instances having mediocre AES NI performance.

ju-st 4 hours ago | parent | prev | next [-]

Would be interesting to add a cold start + "import boto3" benchmark for Python as importing boto3 takes forever on lambdas with little memory. For this scenario I only know this benchmark but it is from 2021 https://github.com/MauriceBrg/aws-blog.de-projects/tree/mast...

anentropic 4 minutes ago | parent [-]

if imports are slow one should probably look into pre-compiling .pyc files into the Lambda bundle

mnutt 2 hours ago | parent | prev | next [-]

Would be interesting to see a benchmark with the rust binary with successively more “bloat” in the binary to separate out how much of the cold start is app start time vs app transfer time. It would also be useful to have the c++ lambda runtime there too; I expect it probably performs similarly to rust.

Tangent: when you have a lambda returning binary data, it’s pretty painful to have to encode it as base64 just so it can be serialized to json for the runtime. To add insult to injury, the base64 encoding is much more likely put you over the response size limits (6MB normally, 1MB via ALB). The c++ lambda runtime (and maybe rust?) lets you return non-JSON and do whatever you want, as it’s just POSTing to an endpoint within the lambda. So you can return a binary payload and just have your client handle the blob.

tomComb an hour ago | parent | prev | next [-]

Yikes, Node.js did really badly. If this holds up, my take-away would be ...

If I want to use TypeScript for Functions, I should write to the v8 runtimes (Deno, Cloudflare, Supabase, etc) which are much faster due to being much more lightweight.

artemonster 21 minutes ago | parent | prev | next [-]

Intel execs after reading this: FAST, more stock buybacks and executive bonuses to mitigate this!!!

abhashanand1501 2 hours ago | parent | prev | next [-]

One of the easiest hack to reduce your AWS bills is to migrate from x86 to arm64 CPU. Performance difference is negligible, and cost can be upto 50% lower for arm machines. This is for both RDS and general compute (EC2, ECS). Would recommend to all.

watermelon0 19 minutes ago | parent [-]

How is the performance difference negligible? In my experience, for the same generation of hardware, ARM64 performance is better than the AMD64 one.

AFAIK ARM64 is around 20% cheaper, not sure where you got the 50%.

evilmonkey19 2 hours ago | parent | prev | next [-]

Can someone tell me why there isn't almost any laptop with Linux and ARM? Is it more efficient than x86 though

PhilipRoman an hour ago | parent | next [-]

How is the bootloader/peripheral compatibility on the non-SBC ARM systems these days? Can you plug in a boot disk on different machine and expect it to just work? My main problem with ARM is that many manufacturers act as if they're special little snowflakes and deserve to have their custom patched kernel/bootloader/whatever.

dijit 2 hours ago | parent | prev | next [-]

Software/driver compatibility and rational fear of change from users.

(My work laptop is one of the few ARM laptops: Thinkpad T14s with Quallcomm Snapdragon Elite)

raddan 2 hours ago | parent [-]

If you don’t mind me asking, what do you think of that laptop? What kind of workloads do you run and how is battery life? What OS? Would you choose it again?

dijit 2 hours ago | parent [-]

Was trying to install Linux on it, though its not working like a standard x86 laptop (for the installer on debian for example).

Battery is good, hardware is really rock solid (though I dislike the new plastic for the keyboard).

Really can’t complain, it’s nearly as good as my Macbook.

It runs Windows 11 today, and everything I need runs fine (jetbrains, rustc, clang, msvc, terraform and of course python).

I’m a technical CTO with infrastructure background, most of my time is spent in spreadsheets these days unfortunately.

jeremyjh 2 hours ago | parent | prev [-]

Chromebooks are essentially this, but not that great for local development.

fragmede 2 hours ago | parent [-]

Depends on which one, and what you want to locally develop.

jeremyjh 2 hours ago | parent [-]

Is there one that even has a full keyboard?

fragmede an hour ago | parent [-]

HP makes a 17" Chromebook if that's what you're after.

KeplerBoy 3 hours ago | parent | prev [-]

> Node.js: Node.js 22 on arm64 was consistently faster than Node.js 20 on x86_64. There's essentially a “free” ~15-20% speedup just by switching architectures!

Not sure why this is phrased like that in the TL;DR, when ARM64 is just strictly faster when running the same nodejs workload and version.