ruby-dev (Japanese) list archive (unofficial mirror)
 help / color / mirror / Atom feed
From: "nagachika (Tomoyuki Chikanaga)" <noreply@ruby-lang.org>
To: ruby-dev@ruby-lang.org
Subject: [ruby-dev:51173] [Ruby master Bug#18578] Hash#shift を繰り返していると ruby が無応答になる。
Date: Sun, 13 Mar 2022 06:44:32 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-96817.20220313064431.2@ruby-lang.org> (raw)
In-Reply-To: <redmine.issue-18578.20220209084916.2@ruby-lang.org>

Issue #18578 has been updated by nagachika (Tomoyuki Chikanaga).

Backport changed from 2.6: REQUIRED, 2.7: REQUIRED, 3.0: REQUIRED, 3.1: DONE to 2.6: REQUIRED, 2.7: REQUIRED, 3.0: DONE, 3.1: DONE

ruby_3_0 f404b21f849af06fb8bbd4b87fdfb585e904d6c3 merged revision(s) 496591de96b261b8789332c7f8b2bfbd17658955.

----------------------------------------
Bug #18578: Hash#shift を繰り返していると ruby が無応答になる。
https://bugs.ruby-lang.org/issues/18578#change-96817

* Author: Anonymous
* Status: Closed
* Priority: Normal
* Backport: 2.6: REQUIRED, 2.7: REQUIRED, 3.0: DONE, 3.1: DONE
----------------------------------------
はじめまして ds14050 といいます。最近スクリプトではなくインタープリタが原因で ruby の応答がなくなるケースに遭遇したと思いました。確認をお願いできますか。

<<<以下再現スクリプト
```ruby
# ウチではだいたい 20 から 30 回で "empty?: true" を最後にして止まる。
# ウチの Ruby-2.5: ruby 2.5.5p157 (2019-03-15 revision 67260) [x64-mingw32]
# ウチの Ruby-2.7: ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x64-mingw32]
# ウチの Ruby-3.1: ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [x64-mingw-ucrt]

H = {}
100.times{|n|
    while H.size < n
        k = Random.rand 0..1<<30
        H[k] = 1 # たぶんここで止まる。
    end
    warn "size: #{H.size} before shifting."
    0 while H.shift
    warn "empty?: #{H.empty?}"
}
warn :exit
```
>>>

Hash に要素を詰めて空にしてを 100 回繰り返すスクリプトです。3.1 を含む3つのバージョンでほぼ確実に止まる(ruby.exe がビジー状態で終了しない)ことを確認しています。2.5 より古い Ruby-1.9 では止まらずに最後まで実行が完了しました。

Hash を空にする方法として `0 while H.shift` の代わりに `H.shift until H.empty?` を選ぶと最後まで実行が完了するようになったことから呼び出すメソッドを揃えて比較したところ、Hash が空になったあとの余分な `Hash#shift` が何か悪さをしているように思えます。

また、デバッグプリントを増やして確認したところ実際に停止しているのは `Hash#shift` の行ではなく `H[k] = 1` の行であるようでした。

よろしくお願いします。




-- 
https://bugs.ruby-lang.org/

      parent reply	other threads:[~2022-03-13  6:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-18578.20220209084916.2@ruby-lang.org>
2022-02-09  8:58 ` [ruby-dev:51162] " mame (Yusuke Endoh)
2022-02-09  9:33 ` [ruby-dev:51163] " mame (Yusuke Endoh)
2022-02-17 11:39 ` [ruby-dev:51166] " naruse (Yui NARUSE)
2022-03-13  6:44 ` nagachika (Tomoyuki Chikanaga) [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-96817.20220313064431.2@ruby-lang.org \
    --to=noreply@ruby-lang.org \
    --cc=ruby-dev@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).