Giter Club home page Giter Club logo

Comments (5)

palexvs avatar palexvs commented on June 19, 2024 1

I guess it should be 6 *:

  1. seconds
  2. minutes
  3. hours
  4. day
  5. month
  6. day week

regular crontab (5 *) + 1 * for seconds

from sidekiq-scheduler.

jonatasrancan avatar jonatasrancan commented on June 19, 2024

You can use fugit gem to test the notations, it's used behind the scenes by rufus

[1] pry(main)> Fugit.parse('0 * * * * *')
=> #<Fugit::Cron:0x0000000139d6de38 @cron_s=nil, @hours=nil, @minutes=nil, @monthdays=nil, @months=nil, @original="0 * * * * *", @seconds=[0], @timezone=nil, @weekdays=nil, @zone=nil>

from sidekiq-scheduler.

unavailabl3 avatar unavailabl3 commented on June 19, 2024

For my case it was confirmed, that 5 symbols should be used for cron expressions in sidekiq.yml.
We needed to perform job every Monday at 12:00

  1. According to documentation (6 symbols):
Fugit.parse('0 12 * * 1 *')
=> #<Fugit::Cron:0x00000001100139c8
 @cron_s=nil,
 @day_and=nil,
 @hours=nil, # wrong
 @minutes=[12],
 @monthdays=nil,
 @months=[1],
 @original="0 12 * * 1 *",
 @seconds=[0],
 @timezone=nil,
 @weekdays=nil,
 @zone=nil>
  1. Pattern with 5 symbols (correct):
Fugit.parse('0 12 * * 1')
=> #<Fugit::Cron:0x0000000115e9f780
 @cron_s=nil,
 @day_and=nil,
 @hours=[12],
 @minutes=[0],
 @monthdays=nil,
 @months=nil,
 @original="0 12 * * 1",
 @seconds=[0],
 @timezone=nil,
 @weekdays=[[1]],
 @zone=nil>

from sidekiq-scheduler.

marcelolx avatar marcelolx commented on June 19, 2024

@unavailabl3 in practice both work but each behaves in a different way, as @palexvs said, if you provide six arguments, this is what it will expect

  1. seconds
  2. minutes
  3. hours
  4. day
  5. month
  6. day week

if you provide five, then this is what it will expect

  1. minute
  2. hours
  3. day
  4. monh
  5. day week

see documentation of fugit, please https://github.com/floraison/fugit?tab=readme-ov-file#the-second-extension

in your example, with 6 symbols @unavailabl3 , it should be

Fugit.parse('0 0 12 * * 1')

or 👇 if seconds don't matter

Fugit.parse('* 0 12 * * 1')

Some examples in the readme are wrong, though (i.e. saying "runs once per minute" where the example will run it once per second), so I am fixing that! Well maybe not, maybe I am just dumb 🤦

from sidekiq-scheduler.

marcelolx avatar marcelolx commented on June 19, 2024

Mention about the support of 6 arguments added to the readme 58e1835

from sidekiq-scheduler.

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.