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

Queue kinds #17

Merged
merged 3 commits into from
Feb 3, 2020
Merged

Queue kinds #17

merged 3 commits into from
Feb 3, 2020

Commits on Feb 3, 2020

  1. Configuration menu
    Copy the full SHA
    4473ec8 View commit details
    Browse the repository at this point in the history
  2. Add queue kinds.

    For any given repository R, snare previously ran all requests in parallel if
    possible. This commit allows jobs to be run in parallel or sequentially (with
    the latter being the default). "Sequentially" means "only run one job per
    repository at a time": other jobs will be left on the queue and popped in FIFO
    order when one has finished.
    ltratt committed Feb 3, 2020
    Configuration menu
    Copy the full SHA
    998931c View commit details
    Browse the repository at this point in the history
  3. Add the 'evict' queue kind.

    This is useful for things like website building, where there's no point having a
    long list of jobs on the queue: only the most recent job is worth executing.
    Note that 'evict' only removes jobs from the queue: it does not affect running
    jobs.
    ltratt committed Feb 3, 2020
    Configuration menu
    Copy the full SHA
    f71b153 View commit details
    Browse the repository at this point in the history