Search results

  1. E

    Load balancing in linux

    Some documentation is here: https://www.kernel.org/doc/html/latest/ But Linux is an open source system. If you really want to understand it in depth to have to look at the sources: https://github.com/torvalds/linux The scheduler source is here...
  2. E

    Load balancing in linux

    Oh, I understand (more or less). A quick search on the Internet with the keywords "linux dynamic load balancing" results in quite a number of articals. My impression is that they interprete "dynamic load balancing" as a concept in the world of distributed servers and that there is no common...
  3. E

    Load balancing in linux

    I think you understand by "load balancing" "assignment of a core to a process or thread". This is normally done on the operating system. But you can assign your own processes/threads to specific cores. You will find the ugly details under "man taskset" (a command) or "man sched_setaffinity"...
Top