Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(cron): Support multiple cron expressions #127

Merged
merged 11 commits into from
Feb 7, 2023

Conversation

irvinlim
Copy link
Member

@irvinlim irvinlim commented Feb 2, 2023

Closes #7.

Overview

This PR introduces support for multiple cron expressions per JobConfig.

For example, given the following JobConfig spec:

spec:
  schedule:
    cron:
      expressions:
        - '0/30 10-19 * * *'
        - '0 0/2 * * *'

This allows us to specify that the JobConfig shall be periodically scheduled as follows:

  1. Every 30 minutes, starting at 10:00 and ending at 19:30.
  2. Every 2 hours outside of 10:00-20:00 (i.e. 00:00, 02:00, ..., 08:00, 20:00, 22:00)

API Semantics

  1. At most one of expression/expressions is allowed in spec.schedule.cron.
  2. The order of cron expressions does not matter.
  3. When multiple cron expressions fall on the same time, only one of them will trigger a schedule. In the above example, 10:00, 12:00, ... are covered by both 0/30 10-19 * * * and 0 0/2 * * *. However, the JobConfig will be scheduled only once.

Changes

  1. Adds a new field expressions to spec.schedule.cron and make both expression/expressions optional.
  2. Update validation webhook to validate new field.
  3. Add the Expression interface, which is implemented by *cronexpr.Expression, as well as a new multiExpression implementation.
  4. Support multiExpression which returns the earliest next value for Next().
  5. Update CLI to display multiple cron expressions correctly.

@irvinlim irvinlim added area/api Related to public APIs, including CRD design, configuration, etc component/execution Issues or PRs related exclusively to the Execution component (Job, JobConfig) kind/feature Categorizes issue or PR as related to a new, well-defined and agreed-upon feature. area/scheduling Related to execution scheduling (e.g. cron, concurrency, etc) labels Feb 2, 2023
@irvinlim irvinlim force-pushed the irvinlim/feat/multi-cron-expressions branch from dd4a016 to adc222e Compare February 2, 2023 17:30
@codecov
Copy link

codecov bot commented Feb 2, 2023

Codecov Report

Base: 70.36% // Head: 70.60% // Increases project coverage by +0.24% 🎉

Coverage data is based on head (c08ae2c) compared to base (c8e12c6).
Patch coverage: 82.60% of modified lines in pull request are covered.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #127      +/-   ##
==========================================
+ Coverage   70.36%   70.60%   +0.24%     
==========================================
  Files         194      200       +6     
  Lines       10284    10386     +102     
==========================================
+ Hits         7236     7333      +97     
- Misses       2661     2664       +3     
- Partials      387      389       +2     
Impacted Files Coverage Δ
pkg/execution/util/cronschedule/option.go 100.00% <ø> (ø)
pkg/execution/variablecontext/provider.go 55.10% <0.00%> (-3.60%) ⬇️
pkg/cli/format/schedule.go 37.93% <37.93%> (ø)
pkg/execution/util/cron/util.go 53.84% <53.84%> (ø)
pkg/execution/util/cronschedule/schedule.go 77.32% <85.71%> (ø)
pkg/cli/common/config.go 88.88% <88.88%> (ø)
pkg/cli/cmd/cmd_get_jobconfig.go 79.71% <91.66%> (+4.40%) ⬆️
pkg/cli/format/time.go 85.00% <91.66%> (+2.64%) ⬆️
pkg/execution/util/cron/parser.go 79.31% <91.66%> (ø)
apis/execution/v1alpha1/jobconfig_types.go 100.00% <100.00%> (ø)
... and 13 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@irvinlim irvinlim force-pushed the irvinlim/feat/multi-cron-expressions branch from e6e927f to 6f1ea8e Compare February 6, 2023 18:56
@irvinlim irvinlim changed the title feat(cron): Support multiple cron expressions in a single CronSchedule feat(cron): Support multiple cron expressions Feb 7, 2023
@irvinlim irvinlim merged commit 77c961f into main Feb 7, 2023
@irvinlim irvinlim deleted the irvinlim/feat/multi-cron-expressions branch February 7, 2023 16:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/api Related to public APIs, including CRD design, configuration, etc area/scheduling Related to execution scheduling (e.g. cron, concurrency, etc) component/execution Issues or PRs related exclusively to the Execution component (Job, JobConfig) kind/feature Categorizes issue or PR as related to a new, well-defined and agreed-upon feature.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: Support multiple cron schedules per JobConfig
1 participant