GithubHelp home page GithubHelp logo

isabella232 / trapperkeeper-scheduler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from puppetlabs/trapperkeeper-scheduler

0.0 0.0 0.0 75 KB

License: Other

Clojure 88.86% Shell 0.04% Makefile 11.09%

trapperkeeper-scheduler's Introduction

Trapperkeeper Scheduler Service

Build Status

Clojars Project

A Trapperkeeper service that provides a simple API for scheduling background tasks.

Other Trapperkeeper services may specify a dependency on the Scheduler service, and then use its functions to schedule and cancel jobs to be run on background worker threads.

What Does This Service Do?

The SchedulerService provides some simple API for scheduling (potentially recurring) background tasks. The service manages the lifecycle of the underlying scheduling subsystem so that other services don't need to (and avoids potential issues around multiple services attempting to initialize the same scheduling subystem in a single JVM process).

The functions that are currently available are as follows:

  • interspaced [interval-ms f]: schedules a job that will call f, block until that call completes, sleep for interval-ms milliseconds, and then repeat. Returns an identifier that can be used to reference this scheduled job (e.g., for cancellation) later.
  • interspaced [interval-ms f group-id]: schedules a job that will call f, block until that call completes, sleep for interval-ms milliseconds, and then repeat. Returns an identifier that can be used to reference this scheduled job (e.g., for cancellation) later. A group identifier group-id can be provided that allows jobs in the same group to be stopped at the same time.
  • interval [interval-ms f]: schedules a job that will call f, block until that call completes, and then run again at the next logical interval based on interval-ms and the original start time. In other words, f will get called every interval-ms unless the execution time for f exceeds interval-ms in which case that execution is skipped. Returns an identifier that can be used to reference this scheduled job (e.g., for cancellation) later.
  • interval [interval-ms f group-id]: schedules a job that will call f, block until that call completes, and then run again at the next logical interval based on interval-ms and the original start time. In other words, f will get called every interval-ms unless the execution time for f exceeds interval-ms in which case that execution is skipped. If there are insufficient threads in the thread pool to run the interval job at the time of execution, the job will be skipped. Returns an identifier that can be used to reference this scheduled job (e.g., for cancellation) later. A group identifier group-id can be provided that allows jobs in the same group to be stopped at the same time.
  • after [interval-ms f]: schedules a job that will call f a single time, after a delay of interval-ms milliseconds. Returns an identifier that can be used to reference this scheduled job (e.g. for cancellation) later.
  • after [interval-ms f group-id]: schedules a job that will call f a single time, after a delay of interval-ms milliseconds. Returns an identifier that can be used to reference this scheduled job (e.g. for cancellation) later. A group identifier group-id can be provided that allows jobs in the same group to be stopped at the same time.
  • interval-after [initial-delay-ms interval-ms f]: Similar to interval but delays initial execution until initial-delay-ms has occurred.
  • interval-after [initial-delay-ms interval-ms f group-id]:Similar to interval but delays initial execution until initial-delay-ms has occurred A group identifier group-id can be provided that allows jobs in the same group to be stopped at the same time.
  • stop-job [job-id]: Given a job-id returned by one of the previous functions, cancels the job. If the job is currently executing it will be allowed to complete, but will not be invoked again afterward. Returns true if the job was successfully stopped, false otherwise.
  • stop-grouped-jobs [group-id]: Given a group-id identifier, cancel all the jobs associated with that group-id. If any of the jobs are currently executing they will be allowed to complete, but will not be invoked again afterward. Returns a sequence of maps, one for each job in the group, with each map containing the job and a boolean stopped? key indiciating if the job was stopped successfully or not.
  • count-jobs []: Return a count of the total number of scheduled jobs known to to the scheduling service. after jobs that have completed won't be included in the total.
  • count-jobs [group-id]: Return a count of the total number of scheduled jobs with the associated group-id known to to the scheduling service. after jobs that have completed won't be included in the total.
  • get-jobs []: return a list of the current job identifiers
  • get-jobs [group-id]: return a list of the current job identifiers associated with the specified group identifier

Implementation Details

A configuration value is available under scheduler->thread-count that controls the number of threads used internally by the quartz library for job scheduling. If not specified, it defaults to 10, which is the quartz internal default.

The current implementation of the SchedulerService is a wrapper around the org.quartz-scheduler/quartz library.

What's Next?

  • Add additional scheduling API functions with more complicated recurring models.`.
  • Add API for introspecting the state of currently scheduled jobs

#Support

Please log tickets and issues at our Jira Tracker.

trapperkeeper-scheduler's People

Contributors

alawley avatar camlow325 avatar ekinanp avatar haus avatar jonathannewman avatar jpinsonault avatar justinstoller avatar kevincorcoran avatar magisus avatar puppetlabs-jenkins avatar stahnma avatar steveax avatar

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.