Module: ElasticGraph::Support::Threading
- Defined in:
- lib/elastic_graph/support/threading.rb
Class Method Summary collapse
-
.parallel_map(items) ⇒ Object
Like Enumerable#map, but performs the map in parallel using one thread per list item.
Class Method Details
.parallel_map(items) ⇒ Object
Like Enumerable#map, but performs the map in parallel using one thread per list item. Exceptions that happen in the threads will propagate to the caller at the end. Due to Ruby’s GVL, this will never be helpful for pure computation, but can be quite helpful when dealing with blocking I/O. However, the cost of threads is such that this method should not be used when you have a large list of items to map over (say, hundreds or thousands of items or more).
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/elastic_graph/support/threading.rb', line 18 def self.parallel_map(items) threads = _ = items.map do |item| ::Thread.new do # Disable reporting of exceptions. We use `value` at the end of this method, which # propagates any exception that happened in the thread to the calling thread. If # this is true (the default), then the exception is also printed to $stderr which # is quite noisy. ::Thread.current.report_on_exception = false yield item end end # `value` here either returns the value of the final expression in the thread, or raises # whatever exception happened in the thread. `join` doesn't propagate the exception in # the same way, so we always want to use `Thread#value` even if we are just using threads # for side effects. threads.map(&:value) rescue => e e.set_backtrace(e.backtrace + caller) raise e end |