中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python怎么給內存和cpu使用量設置限制

發布時間:2022-05-16 13:44:57 來源:億速云 閱讀:300 作者:iii 欄目:開發技術

本篇內容介紹了“python怎么給內存和cpu使用量設置限制”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

    給內存和cpu使用量設置限制

    在linux系統中,使用Python對內存和cpu使用量設置限制需要通過resource模塊來完成。

    resource文檔地址:resource — Resource usage information

    限制Python進程cpu使用時間的樣例如下

    import signal
    import resource
    import os
    def time_exceeded(signo, frame):
        print("time's up")
        raise SystemExit(1)
    def set_max_runtime(seconds):
        soft,hard = resource.getrlimit(resource.RLIMIT_CPU)
        resource.setrlimit(resource.RLIMIT_CPU, (seconds, hard))
        signal.signal(signal.SIGXCPU, time_exceeded)
    if __name__ == '__main__':
        set_max_runtime(5)
        while True:
            pass

    運行上述代碼,當超時時會產生SIGXCPU信號。程序就會做清理工作然后退出。

    要限制內存的使用可以使用如下函數

    def limit_memory(maxsize):
        soft, hard = resource.getrlimit(resource.RLIMIT_AS)
        resource.setrlimit(resource.RLIMIT_AS, (maxsize, hard))

    當設定了內存限制后,如果沒有更多的內存可用,程序就會開始產生MemoryError異常。

    注:以上示例代碼來源于:《Python Cookbook》P575 “給內存和cpu使用量設置限制”。

    查詢windows的cpu、內存使用率

    # -*- coding: UTF-8 -*-
    import os
    def get_info(metric):
        metric_cmd_map = {
            "cpu_usage_rate": "wmic cpu get loadpercentage",
            "mem_total": "wmic ComputerSystem get TotalPhysicalMemory",
            "mem_free": "wmic OS get FreePhysicalMemory"
        }
        out = os.popen("{}".format(metric_cmd_map.get(metric)))
        value = out.read().split("\n")[2]
        out.close()
        return float(value)
    # cpu使用率
    cpu_usage_rate = get_info('cpu_usage_rate')
    print("windows的CPU使用率是{}%".format(cpu_usage_rate))
    # 無法直接查出內存使用率,總內存單位是b,而剩余內存單位是kb
    mem_total = get_info('mem_total')/1024
    mem_free = get_info('mem_free')
    mem_usage_rate = (1 - mem_free/mem_total)*100
    print("windows的內存使用率是{}%".format(mem_usage_rate))

    “python怎么給內存和cpu使用量設置限制”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    延庆县| 集安市| 融水| 河西区| 木里| 搜索| 秦皇岛市| 花莲市| 陆良县| 金山区| 肥西县| 屏边| 山东省| 张家港市| 康马县| 沈阳市| 通许县| 西安市| 枞阳县| 曲阜市| 呼伦贝尔市| 海丰县| 桐梓县| 高陵县| 田林县| 什邡市| 东方市| 阿拉尔市| 治多县| 兴仁县| 遵义县| 秭归县| 赣州市| 永和县| 吉木乃县| 万源市| 克什克腾旗| 股票| 阳西县| 阿鲁科尔沁旗| 鞍山市|