File descriptor leak using multiprocessing.Queue
還沒有人認領這個 Issue。
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- PR 合併指標
- PR 指標待擷取
描述
Bug report
Bug description:
"Too many open files" can occur with multiprocessing.Queue, even if the protocol used to work with the queue is correct.
The file descriptor leak can be demonstrated with two small programs:
File "ko.py"
import os
import multiprocessing
pid = os.getpid()
cmd = f'lsof -p {pid} | grep -i pipe | wc -l'
cmdfull = f'lsof -p {pid} | grep -i pipe'
queues = {}
for i in range(100):
queues[i] = multiprocessing.Queue()
os.system(cmd)
queues[i].close()
queues[i].join_thread()
os.system(cmd)
os.system(cmdfull)
File "ok.py"
import os
import multiprocessing
pid = os.getpid()
cmd = f'lsof -p {pid} | grep -i pipe | wc -l'
cmdfull = f'lsof -p {pid} | grep -i pipe'
queues = {}
for i in range(100):
queues[i] = multiprocessing.Queue()
queues[i].put('Hello')
os.system(cmd)
queues[i].close()
queues[i].join_thread()
os.system(cmd)
os.system(cmdfull)
An empty queue that remains empty is not abnormal (e.g., an error queue when no errors occur).
The workaround is to create a class extending multiprocessing.Queue, adding a close method that inserts an extra message into the queue before performing the actual close.
This issue can be observed on Linux and macOS. However, it is not specific to a particular operating system.
CPython versions tested on:
3.12
Operating systems tested on:
Linux
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先,在受支援的 Linux 或 macOS 系統上執行 ko.py 和 ok.py 重現程式,並比較它們的檔案描述元數量。接著檢查 multiprocessing.Queue 的 close 和 join_thread 路徑;當反覆關閉空佇列不再留下 lsof 顯示的描述元,同時保留 ok.py 展示的正常行為時,即視為完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- operating-systems
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100