`multiprocessing.Queue` methods have asymmetric behavior
まだ誰も着手していません。
- 主要言語
- Python
- スター
- 77.2k
- フォーク
- 35.9k
- PR マージ指標
- PR 指標を取得中
説明
Bug report
Bug description:
Currently, the qsize() and full() methods rely on the semaphore value (they change their result immediately after the put operation is performed). However, the empty() method relies on the underlying pipe's readiness, which violates user expectations (since similar queue.Queue methods have symmetric behavior) and leads to the following:
#!/usr/bin/env python3
import sys
import time
from multiprocessing import Process, Queue, set_start_method
CONSUMERS = 100 # any sufficiently large number
ITEMS = CONSUMERS * 100 # should result in exceeding the underlying pipe
DELAY = 1 # "infinitesimal", but it can actually be as large as you like
def consume(queue):
for _ in range(ITEMS // CONSUMERS):
if queue.empty(): # it should never be printed, but it will be
print("EMPTY!")
queue.get()
def main():
queue = Queue()
for i in range(ITEMS):
queue.put(i)
time.sleep(DELAY)
assert queue.qsize() == ITEMS
consumers = [
Process(target=consume, args=[queue], daemon=True)
for _ in range(CONSUMERS)
]
for consumer in consumers:
consumer.start()
for consumer in consumers:
consumer.join()
if __name__ == "__main__":
set_start_method("fork")
sys.exit(main())
The problem was initially noticed in one Stack Overflow question, when the queue was considered empty despite having a sufficiently large number of items. I have only cited one case, but in fact the problem will always occur when buffer flushing is too slow (especially if any complex objects are serialized).
I decided to mark this as a bug, as this behavior can be fixed as a result of solving #87302. Otherwise, I think clarifying this point in the documentation may also be sufficient.
Related (implicitly used in the above code to reproduce): #128186.
CPython versions tested on:
3.9, 3.10, 3.11, 3.12, 3.13, 3.14
Operating systems tested on:
Linux
Linked PRs
- gh-144832
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず qsize()、full()、empty() に関する multiprocessing.Queue のドキュメントを確認し、その後、issue の再現手順と関連する issue #87302 および #128186 を確認してください。リンクされている PR #144832 を確認し、そこでその動作が解決されているか判断してください。完了とは、queue メソッドが一貫して動作するか、ドキュメントに記載された動作が報告されたケースに明確に対応していることを意味します。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- backend, distributed-systems
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100