Project

General

Profile

Actions

Feature #17285

open

Less strict `Ractor.select`

Added by marcandre (Marc-Andre Lafortune) over 3 years ago. Updated over 3 years ago.

Status:
Open
Assignee:
-
Target version:
-
[ruby-core:100543]

Description

Summary: could we have a way for Ractor.select to skip ractors with closed queues and raise only if no ractor with an open queue remains?

Detail:

I backported Ractor for earlier Ruby versions, as I'd like to use it in some gems that would work great in 3.0 and work ok in older Rubies without rewriting. That was a lot of fun :-)

One surprise for me was that Ractor.select enforces that no given ractor is terminated(*).

This means that one must remove terminated ractors from a pool of ractors before calling select again:

pool = 20.times.map { Ractor.new{ do_processing } }

20.times do
  ractor, result = Ractor.select(*pool)
  handle(result)
  pool.delete(ractor) # necessary!
end
  1. This can be tedious, but I know I'm very lazy

  2. It is not convenient to share a pool between different ractors. Try writing code that starts 5 ractors that would consume the results from pool above.

  3. It might require special synchronization if the ractors may yield a variable number of values:

def do_processing
  rand(10).times do {
    Ractor.yield :a_result
  }
  :finish
end

pool = 20.times.map { Ractor.new{ do_processing } }

until pool.empty? do
  ractor, result = Ractor.select(*pool)
  if result == :finish
    pool.delete(ractor)
  else
    do_something_with(result)
  end
end

I would like to propose that it would be allowed (by default or at least via keyword parameter) to call select on terminated ractors, as long as there is at least one remaining open one.

This would make it very to resolve 1 and 2 above. Here's an example combine them both together:

def do_processing
  rand(10).times do {
    Ractor.yield :a_result
  }
  Ractor.current.close # avoid yielding a value at the end
end

pool = 20.times.map { Ractor.new{ do_processing } }.freeze

5.times do # divide processing into 5 ractors
  Ractor.new(pool) do |pool|
    loop do
      _ractor, result = Ractor.select(*pool) # with my proposed lax select
      do_something_with(result)
    end
  end
end

The loop above terminates when Ractor.select raises an error once the whole pool is terminated.

I'm new to actors but my intuition currently is that I will never want to take care of a pool of Ractors myself and would always prefer if Ractor.select did it for me. Are there use-cases where Ractor.select raising an error if it encounters a closed queue is helpful?

Notes:

  • (*) Ractor.select doesn't really enforce ractors to be opened of course, it will work if the ractors are consumed in the right order, like in this example by chance:
10.times.map do
  r = 2.times.map { Ractor.new{ sleep(0.05); :ok } }
  Ractor.select(*r) # Get first available result
  # Don't remove the ractor from `r`
  Ractor.select(*r).last rescue :error  # Get second result
end
 # => [:ok, :error, :error, :error, :error, :error, :error, :ok, :ok, :ok]
  • I think Ractor.select(*pool, yield_value: 42) would raise only if the current outgoing queue is closed, even if the whole pool was terminated
  • Similarly Ractor.select(*pool, Ractor.current) would raise only if the current incomming queue is also closed.
Actions

Also available in: Atom PDF

Like0
Like0