Home Explore Blog Models CI



nix

doc/manual/source/advanced-topics/cores-vs-jobs.md
b30724c0a3fc7e24bf7afa675fdf4f99aa11b4cfeec111060000000300000ecd
# Tuning Cores and Jobs

Nix has two relevant settings with regards to how your CPU cores will
be utilized: `cores` and `max-jobs`. This chapter will talk about what
they are, how they interact, and their configuration trade-offs.

  - `max-jobs`\
    Dictates how many separate derivations will be built at the same
    time. If you set this to zero, the local machine will do no
    builds.  Nix will still substitute from binary caches, and build
    remotely if remote builders are configured.

  - `cores`\
    Suggests how many cores each derivation should use. Similar to
    `make -j`.

The `cores` setting determines the value of
`NIX_BUILD_CORES`. `NIX_BUILD_CORES` is equal to `cores`, unless
`cores` equals `0`, in which case `NIX_BUILD_CORES` will be the total
number of cores in the system.

The maximum number of consumed cores is a simple multiplication,
`max-jobs` \* `NIX_BUILD_CORES`.

The balance on how to set these two independent variables depends upon
each builder's workload and hardware. Here are a few example scenarios
on a machine with 24 cores:

| `max-jobs` | `cores` | `NIX_BUILD_CORES` | Maximum Processes | Result                                                                                                                                                                                                                                                                                 |
| --------------------- | ------------------ | ----------------- | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 1                     | 24                 | 24                | 24                | One derivation will be built at a time, each one can use 24 cores. Undersold if a job can’t use 24 cores.                                                                                                                                                                              |
| 4                     | 6                  | 6                 | 24                | Four derivations will be built at once, each given access to six cores.                                                                                                                                                                                                                |
| 12                    | 6                  | 6                 | 72                | 12 derivations will be built at once, each given access to six cores. This configuration is over-sold. If all 12 derivations being built simultaneously try to use all six cores, the machine's performance will be degraded due to extensive context switching between the 12 builds. |
| 24                    | 1                  | 1                 | 24                | 24 derivations can build at the same time, each using a single core. Never oversold, but derivations which require many cores will be very slow to compile.                                                                                                                            |
| 24                    | 0                  | 24                | 576               | 24 derivations can build at the same time, each using all the available cores of the machine. Very likely to be oversold, and very likely to suffer context switches.                                                                                                                  |

It is up to the derivations' build script to respect host's requested
cores-per-build by following the value of the `NIX_BUILD_CORES`
environment variable.

Chunks
f432cae2 (1st chunk of `doc/manual/source/advanced-topics/cores-vs-jobs.md`)
Title: Nix Core and Job Tuning
Summary
This document explains how to configure CPU core utilization in Nix using two settings: `max-jobs` and `cores`. `max-jobs` dictates the number of simultaneous derivations built, while `cores` suggests how many cores each derivation should use, mapping to the `NIX_BUILD_CORES` environment variable (if `cores` is 0, `NIX_BUILD_CORES` becomes the total system cores). The total potential core consumption is `max-jobs` * `NIX_BUILD_CORES`. The text provides examples on a 24-core machine to illustrate the trade-offs of different configurations, highlighting scenarios that can lead to underselling or overselling CPU resources and potential performance degradation due to context switching. It also notes that build scripts must respect the `NIX_BUILD_CORES` variable.