Git Product home page Git Product logo

Comments (6)

mperham avatar mperham commented on May 26, 2024

It takes an Array of Arrays, one Array for each job's args: [[1], [2], [3]]

from sidekiq.

yesthesoup avatar yesthesoup commented on May 26, 2024

It takes an Array of Arrays, one Array for each job's args: [[1], [2], [3]]

Yes, thanks, that is what I am passing:

the job's args is [1, 2, 3]

And I am passing an array of size one: [[1, 2, 3]]

from sidekiq.

mperham avatar mperham commented on May 26, 2024

Then I think you are missing an Array?

[[[1,2,3]]]

from sidekiq.

yesthesoup avatar yesthesoup commented on May 26, 2024

Then I think you are missing an Array?

[[[1,2,3]]]

Thanks - I guess that could be a workaround as well - but basically my normal usecase is a whole bunch of ids:

args = [[1, 2, 3...], [4, 5, 6...], [7, 8, 9 ...]]

perform_bulk(args)

but when we are testing with a smaller amount of IDs, we'd have to double nest the array?

[[[1,2,3]]]

from sidekiq.

mperham avatar mperham commented on May 26, 2024

I think you're still missing an Array because your job only takes one argument: an array. You want this:

[ # the set of jobs
  [ # the first job
    [1, 2, 3...] # the first argument
  ],
  [[4, 5, 6...]],
  [[7, 8, 9 ...]],
]

from sidekiq.

yesthesoup avatar yesthesoup commented on May 26, 2024

You are right, thank you. Sorry for the back and forth, I'm not sure what I was testing earlier with my larger set of args but it wasn't correct.

Solved by adding a zip call:

previously:

my_id_args = my_ids.in_groups_of(BATCH_SIZE, false)
MyWorker.perform_bulk(my_id_args)

now:

my_ids.in_groups_of(BATCH_SIZE, false).zip
MyWorker.perform_bulk(my_id_args)

from sidekiq.

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.