-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add emerge jobs tmpdir blocks and files threshold options
--jobs-tmpdir-blocks-threshold[=RATIO] Specifies the maximum ratio of used blocks allowed (a floating-point number between 0.0 and 1.0) in PORTAGE_TMPDIR when starting a new job. With no argument, removes a previous blocks ratio threshold. For example, use a ratio of 0.50 to stop starting new jobs when the blocks usage in PORTAGE_TMPDIR exceeds 50%. This option conflicts with FEATURES="keepwork". WARNING: Since the job scheduler is unable to predict the future consumption of jobs that it has scheduled, users are advised to set a threshold that provides a significant amount of headroom, in order to decrease the probablility that jobs will fail due to ENOSPC errors. --jobs-tmpdir-files-threshold[=RATIO] Specifies the maximum ratio of used files (inodes) allowed (a floating-point number between 0.0 and 1.0) in PORTAGE_TMPDIR when starting a new job. With no argument, removes a previous files ratio threshold. For example, use a ratio of 0.50 to stop starting new jobs when the files usage in PORTAGE_TMPDIR exceeds 50%. This option conflicts with FEATURES="keepwork". WARNING: Since the job scheduler is unable to predict the future consumption of jobs that it has scheduled, users are advised to set a threshold that provides a significant amount of headroom, in order to decrease the probablility that jobs will fail due to ENOSPC errors. Bug: https://bugs.gentoo.org/934382 Signed-off-by: Zac Medico <[email protected]>
- Loading branch information
Showing
3 changed files
with
153 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters