Ask HN: Running production server on M1 mini?
23 points| groundthrower | 4 years ago | reply
We just noticed locally on our dev environment that our M1 is actually performing better performance wise (don’t ask me how).
We are now considering switching our production servers to M1 minis which is also offered by our cloud provider. Do you have any experience on running M1s / Mac in an production environment regarding stability / uptime etc?
Edit: it’s a Rust application which uses the Rayon crate. The application gets on average one request a minute which crunches some numbers for an average of 2 seconds - so it’s mostly idle. No disk IO.
[+] [-] al2o3cr|4 years ago|reply
Based on a "highly parallelizable" application performing better on 8 cores than 32, I'd guess you're running out of something else: memory or disk bandwidth.
[+] [-] gwbas1c|4 years ago|reply
I recently inherited an app that makes heavy use of Redis caching because someone didn't first try to optimizing SQL. The complexity that Redis caching adds is insane to maintain compared to spending a few minutes optimizing SQL.
The original poster really needs to hook up a profiler.
Also: having written lots of parallel code: Parallelization isn't a magic way to make things faster. If the codebase is breaking up tasks into lots of tiny tasks that run in parallel, there might be more overhead in parallelization than needed. Sometimes the fastest (performance and implementation) way to parallelize is to keep most of the codebase serial, but only parallelize at the highest level and never share data among operations.
[+] [-] gjsman-1000|4 years ago|reply
[+] [-] Matthias247|4 years ago|reply
[+] [-] groundthrower|4 years ago|reply
[+] [-] hvgk|4 years ago|reply
If it’s doing it offline it’s probably cheaper to buy one and chuck it in your office than borrow one from a cloud provider. The ass end ones are really really really cheap. Much cheaper than just the CPU in an equivalent server machine. If they blow up, just mill down to the apple store and buy another one.
Disclaimers of course: (1) it doesn’t have ECC RAM (2) it doesn’t have redundant power. We ignore (1) and solve (2) by running a prometheus node exporter on it and seeing if it disappears.
[+] [-] Someone1234|4 years ago|reply
My point is: If your workload is time critical, and you cannot afford downtime/outages then it may not be for you. If your workload can afford the time it would take to adopt a new M1 Mini when the old one dies, then maybe?
[+] [-] jagger27|4 years ago|reply
It's kind of funny, but an M1 MacBook does. In fact it comes with a solid >12 hour UPS built-in.
[+] [-] bpicolo|4 years ago|reply
[+] [-] groundthrower|4 years ago|reply
[+] [-] joshdev|4 years ago|reply
[+] [-] svacko|4 years ago|reply
[+] [-] crankyadmin|4 years ago|reply
The M1 is very fast at doing certain things and your application may just be making good use of the M1 instruction set... both without knowing a bit more its difficult to tell.
[+] [-] krageon|4 years ago|reply
[+] [-] DrBenCarson|4 years ago|reply
That being said, it would prepare one to better analyze next week’s patch,
[+] [-] poulsbohemian|4 years ago|reply
I did performance analysis work for a long span of my career. While I'm reading between the lines of what you wrote, my first question is - what do you mean by performing better? As in, is it somehow able to process more of these tasks over a given timeframe? If so, I'd want to understand more about the workloads you are running to make sure it's a proper comparison.
There's a whole lot more questions we need to answer here to understand the results you are seeing before we can have any kind of discussion of whether M1s would be "better."
[+] [-] marban|4 years ago|reply
https://imgur.com/a/VAxpGCL
[+] [-] nobbis|4 years ago|reply
[+] [-] toast0|4 years ago|reply
You've got to put some sort of firewall or something in front, don't let it accept tcp connections directly. You might be OK, but not great if you just set the listen queue really short; at least that should prevent the machine from falling over when it's flooded, but without syncookies, chances are you won't be able to make new connections either.
[+] [-] DarthNebo|4 years ago|reply
[+] [-] groundthrower|4 years ago|reply
[+] [-] gjsman-1000|4 years ago|reply
One would be to look, if you haven’t, at MacStadium and what they’ve got there. You can get an M1 Mini there and it will be run by experts who know all about using M1 minis for servers. Considering your application is highly parallelizable, this would also make it easy to upgrade to the M1 Pro with double the performance cores down the line.
Secondly, if your application is running better on M1, that reeks of an application which is somehow greatly benefiting at single-threaded performance somewhere, which the M1 excels and the Epyc is poor at. That probably needs some investigation.
[+] [-] errcorrectcode|4 years ago|reply
Mac minis don't have redundant power or ECC. You might as well run a bunch of RPis or PICs. Get yourself some real enterprise servers or rent some via a VPS.
Disclaimer: I use a Mac mini as my living room HTPC. I wouldn't run anything real on it. That's what I have a 96 thread EPYC virtualized box for.
[+] [-] caeril|4 years ago|reply
My advice is to always use ECC DRAM in production unless you're serving cat photos, porn, social media posts, or other societally useless applications. For anything that actually matters, please use ECC.
[+] [-] groundthrower|4 years ago|reply
[+] [-] skw-hn|4 years ago|reply
As per the stability, my scaleway m1 has never had any issues. works just fine for some CI.
[+] [-] jagger27|4 years ago|reply
[+] [-] throwaway4good|4 years ago|reply
[+] [-] maksimpiriyev|4 years ago|reply
[+] [-] tyingq|4 years ago|reply
[+] [-] usefulcat|4 years ago|reply