Python - 减少 niceness 值

Python - decrease niceness value

使用python我可以轻松增加当前进程的友好度:

>>> import os
>>> import psutil

>>> # Use os to increase by 3
>>> os.nice(3)
3

>>> # Use psutil to set to 10
>>> psutil.Process(os.getpid()).nice(10)
>>> psutil.Process(os.getpid()).nice()
10

但是,似乎不允许降低进程的友好度:

>>> os.nice(-1)
OSError: [Errno 1] Operation not permitted

>>> psutil.Process(os.getpid()).nice(5)
psutil.AccessDenied: psutil.AccessDenied (pid=14955)

正确的做法是什么?棘轮机构是错误还是功能?

Linux,默认情况下,不允许非特权用户降低其进程的 nice 值(即增加优先级),这样一个用户就不会创建一个高优先级的进程来挨饿出其他用户。 Python 只是转发 OS 给你的错误。

root 用户可以增加进程的优先级,但是 运行 作为 root 用户会有其他后果。

这不是 Python 或 os.nice 界面的限制。 man 2 nice中描述只有超级用户可以降低进程的友好度:

nice() adds inc to the nice value for the calling process. (A higher nice value means a low priority.) Only the superuser may specify a negative increment, or priority increase. The range for nice values is described in getpriority(2).

我有同样的错误 [Errno 2] Operation not permitted

我不想用 sudo 启动我的脚本,所以我想到了以下解决方法:

def decrease_nice():
    pid = os.getpid()
    os.system("sudo renice -n -19 -p " + str(pid))

def normal_nice():
    pid = os.getpid()
    os.system("sudo renice -n 0 -p " + str(pid))