GithubHelp home page GithubHelp logo

Comments (7)

grosser avatar grosser commented on July 17, 2024

the results that Parallel.map returns are sorted, so you could do:

out = Parallel.each_with_index(ITEMS, in_threads: 6) { |item, index| "my output" }
puts out

capturing stdout would not work since that relies on replacing $stdout and that would not be thread local
if you want to get super hacky you could replace $stdout with a thread-aware StringIO that stores each threads output separately and then returns prints it in order when all processes have finished

from parallel.

shaicoleman avatar shaicoleman commented on July 17, 2024

That doesn't do the same thing as the example I've provided.
I'm interested in the ability to have a callback to print things (or save to disk, etc.) in order as they finish executing, not at the end

from parallel.

grosser avatar grosser commented on July 17, 2024

if you want to print as things are finishing you can use a finish hook docs

in that case it would just print the result

from parallel.

shaicoleman avatar shaicoleman commented on July 17, 2024

The finish hook with the example from the docs will be out of order.
Parallel.map('A'..'Z', in_threads: 6, finish: -> (item, i, result) { puts item }) { sleep rand }

I want the finish hook to be triggered in order. Try to run the example I gave if I'm unclear

from parallel.

grosser avatar grosser commented on July 17, 2024
require 'parallel'

want = 0
stack = []
finish = -> (item, i, result) do
  if i == want
    puts item # print current
    want += 1
    
    # print things already ready
    stack[(i + 1)...].to_a.each do |old|
      break unless old
      puts old
      want += 1
    end
  else
    stack[i] = item # store for later
  end
end

Parallel.map('A'..'Z', in_threads: 6, finish: finish) { sleep rand }

from parallel.

shaicoleman avatar shaicoleman commented on July 17, 2024

Yes, that's a more elegant and efficient solution.

I'm still hoping this would be built as a reusable solution into the parallel gem

from parallel.

grosser avatar grosser commented on July 17, 2024

PR welcome :)

finish_in_order: true or so 🤷

from parallel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.