One big difference that Iโ€™ve noticed between Windows and Linux is that Windows does a much better job ensuring that the system stays responsive even under heavy load.

For instance, I often need to compile Rust code. Anyone who writes Rust knows that the Rust compiler is very good at using all your cores and all the CPU time it can get its hands on (which is good, you want it to compile as fast as possible after all). But that means that for a time while my Rust code is compiling, I will be maxing out all my CPU cores at 100% usage.

When this happens on Windows, Iโ€™ve never really noticed. I can use my web browser or my code editor just fine while the code compiles, so Iโ€™ve never really thought about it.

However, on Linux when all my cores reach 100%, I start to notice it. It seems like every window I have open starts to lag and I get stuttering as the programs struggle to get a little bit of CPU thatโ€™s left. My web browser starts lagging with whole seconds of no response and my editor behaves the same. Even my KDE Plasma desktop environment starts lagging.

I suppose Windows must be doing something clever to somehow prioritize user-facing GUI applications even in the face of extreme CPU starvation, while Linux doesnโ€™t seem to do a similar thing (or doesnโ€™t do it as well).

Is this an inherent problem of Linux at the moment or can I do something to improve this? Iโ€™m on Kubuntu 24.04 if it matters. Also, I donโ€™t believe it is a memory or I/O problem as my memory is sitting at around 60% usage when it happens with 0% swap usage, while my CPU sits at basically 100% on all cores. Iโ€™ve also tried disabling swap and it doesnโ€™t seem to make a difference.

EDIT: Tried nice -n +19, still lags my other programs.

EDIT 2: Tried installing the Liquorix kernel, which is supposedly better for this kinda thing. I dunno if itโ€™s placebo but stuff feels a bit snappier now? My mouse feels more responsive. Again, dunno if itโ€™s placebo. But anyways, I tried compiling again and it still lags my other stuff.

You are viewing a single thread.
View all comments

While I ultimately think your solution is to use a different scheduler, and that the most useful responses youโ€™ve gotten have been about that; and that I agree with your response that Linux distros should really be tuning the scheduler for the UI by default and let developers and server runners take the burden of tuning differently for their workloadsโ€ฆ all that said, I canโ€™t let this comment on your post go by:

which is good, you want it to compile as fast as possible after all

If fast compile times are your priority, youโ€™re using the wrong programming language. One of Goโ€™s fundamental principles is fast compile times; even with add-on caching tooling in other languages, Go remains one of the fastest-compiling statically compiled, strongly typed programming languages available. I will not install Haskell programs unless theyโ€™re precompiled bin packages, thatโ€™s a hard rule. I will only reluctantly install Rust packages, and will always choose bins if available. But Iโ€™ll pick a -git Go package without hesitation, because they build crazy fast.

Anyway, I hope you find the scheduler of your dreams and live happily ever after.

permalink
report
reply
8 points

I only said as fast as possible - I generally think the compile times are fine and not a huge problem. Certainly worth it for all the benefits.

permalink
report
parent
reply
6 points

Thereโ€™s no free lunch after all. Goโ€™s quick compilation also means the language is very simple, which means all the complexity shifts to the programโ€™s code.

permalink
report
parent
reply

Thatโ€™s an interesting take - that Go program code is more complex than Rust - if I understood you correctly. I came across a learning curve and cognitive load readability comparison analysis a while back, which I didnโ€™t save and now canโ€™t find. I havenโ€™t needed it before because I think this is the first time Iโ€™ve heard anyone suggest that Rust code is less complex than Go.

Your point about the tradeoff is right, but for different reasons. Go executables have a substantial runtime (with garbage collection, one of those things that make Go code less complex), making them much larger and measurably slower. And then thereโ€™s Rustโ€™s vaunted safety, which Go - outside of the most basic compile-time type safety - lacks. Lots of places for Rust to claim superiority in the trade-offs, so it tickles me that you choose the one truly debatable argument, โ€œcomplexity.โ€

permalink
report
parent
reply

Linux

!linux@programming.dev

Create post

A community for everything relating to the GNU/Linux operating system

Also check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

Community stats

  • 2.9K

    Monthly active users

  • 952

    Posts

  • 8.2K

    Comments