Giter VIP home page Giter VIP logo

Comments (7)

ZimbiX avatar ZimbiX commented on August 19, 2024

Hmm, I'm afraid not!

# A module that we mix into ActiveJob's wrapper for Que::Job, to maintain
# backwards-compatibility with internal changes we make.
module WrapperExtensions
module ClassMethods
# We've dropped support for job options supplied as top-level keywords, but ActiveJob's QueAdapter still uses them. So we have to move them into the job_options hash ourselves.
def enqueue(args, priority:, queue:, run_at: nil)
super(args, job_options: { priority: priority, queue: queue, run_at: run_at })
end
end

I'll have a quick look into how tags support could be added.

from que.

ZimbiX avatar ZimbiX commented on August 19, 2024

I've not used tags before, nor have I ever been clear on their purpose. Is there a reason you can't have your tags be a job kwarg?

from que.

ZimbiX avatar ZimbiX commented on August 19, 2024

We've dropped support for job options supplied as top-level keywords, but ActiveJob's QueAdapter still uses them. So we have to move them into the job_options hash ourselves.

I looked into this. The manual construction of job_options was only in edge Rails for 6 months (rails/rails#44734 until rails/rails#46005 / 2022-03-22 – 2022-09-13), with both merge commits showing a Git tag of v7.1.0.beta1, so given that, I read that it never made it into the v7.1.0 release. However, it was backported to 7-0-stable, and it's still present there, so I gathered that it was released in a v7.0.x, and yes, it was released in v7.0.4.

So. We can't just assume it's safe to change the handling of job_options in Que's ActiveJob extensions.

from que.

skv-headless avatar skv-headless commented on August 19, 2024

I've not used tags before, nor have I ever been clear on their purpose.

for example synchronization produces some amount of jobs. I mark them with tag and get synchronization progress.

Is there a reason you can't have your tags be a job kwarg

I think I can. It would just require some refactoring

Wanted your opinion before starting to refactor.
Thank you for a quick response 🙏

from que.

ZimbiX avatar ZimbiX commented on August 19, 2024

We could add tags as another top-level kwarg. It would be consistent to do that, given the other job_options are configured at that level - priority, queue, and run_at (although run_at is set via wait_until... or it was, but maybe that mapping's been lost now the Que adapter's been removed from ActiveJob... =S ). But that could be a breaking change for systems using Que that have a job kwarg called tags.

from que.

ZimbiX avatar ZimbiX commented on August 19, 2024

Another option that would allow you to keep using tags would be to insert that job using Que.enqueue. To keep compatibility with ActiveJob, just ensure you're doing it such that the resulting row inserted into the que_jobs table is the same as it would've been if it were enqueued using ActiveJob (other than the tags).

from que.

ZimbiX avatar ZimbiX commented on August 19, 2024

I'm going to reopen and rename the issue so it can remain tracked

from que.

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.