Giter Club home page Giter Club logo

Comments (10)

pokonski avatar pokonski commented on August 17, 2024 1

@joshjordan use map to collect all the ids that each run returns and pass them to after: option

from gush.

ferusinfo avatar ferusinfo commented on August 17, 2024

I guess this line in client.rb file is the issue here:

job_names.map {|name| workflow.find_job(name) }

from gush.

pokonski avatar pokonski commented on August 17, 2024

Yeah, this wasn't a feature I needed in Gush when I developed it, but I can have a look. It should probably generate UUIDs for jobs, instead of relying on their (not unique as it turns out) names.

from gush.

ferusinfo avatar ferusinfo commented on August 17, 2024

I've changed some lines in the code and I almost got it working based on UUIDs, but changing the tests specs is not something that I like very much..

from gush.

ferusinfo avatar ferusinfo commented on August 17, 2024

I've been able to come to this: https://github.com/ferusinfo/gush/commits/unique_node_names - the only issue that I am having now is that redis isn't persisting all the jobs created in a queue (getting a workflow through new instance of Gush::Client.new it is only returning the last job).

from gush.

ferusinfo avatar ferusinfo commented on August 17, 2024

So now, when you merged the changes, is there any way to add me to the contributors section?

from gush.

pokonski avatar pokonski commented on August 17, 2024

Sure :)

from gush.

joshjordan avatar joshjordan commented on August 17, 2024

@ferusinfo how would I do this if the number of jobs is variable? What if it looked like this, from your example?

class FetchPricesWorkflow < Gush::Workflow
  def configure
    start_time = DateTime.now

    #pages is unknown when the flow begins

    run FetchPageCountJob

    #somehow get pages...
    for i in 0..pages
      run FetchPricesJob, params: { page_num: i }
    end

    run SummaryJob, after: FetchPricesJob, params: {start_time: start_time}
  end

from gush.

kladkogex avatar kladkogex commented on August 17, 2024

thanks to suggestion @pokonski
I made it like this

class MyWorkflow < Gush::Workflow

  def configure(post_id, comment_ids)
   # multiple jobs in parallel
    job_ids = []
    comment_ids.each do |id|
      job_ids << (run RemoveCommentJob, params: { comment_id: id })
    end

   # after all jobs RemoveCommentJob finished
    run RemovePostJob, after: job_ids, params: {post_id: post_id}

  end
end

run workflow:

post_id=1
comment_ids = post.comments.pluck(:id)

flow = MyWorkflow.create(post_id, comment_ids)
flow.start!

from gush.

pokonski avatar pokonski commented on August 17, 2024

Closing since it was solved :)

from gush.

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.