Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/PagerDuty/scheduler
A Scala library for scheduling arbitrary code to run at an arbitrary time.
https://github.com/PagerDuty/scheduler
in-scope team-scheduling-escalation type-service
Last synced: about 1 month ago
JSON representation
A Scala library for scheduling arbitrary code to run at an arbitrary time.
- Host: GitHub
- URL: https://github.com/PagerDuty/scheduler
- Owner: PagerDuty
- License: bsd-3-clause
- Archived: true
- Created: 2016-08-05T18:31:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-03-09T17:01:21.000Z (almost 3 years ago)
- Last Synced: 2024-08-03T01:38:03.749Z (4 months ago)
- Topics: in-scope, team-scheduling-escalation, type-service
- Language: Scala
- Homepage:
- Size: 477 KB
- Stars: 214
- Watchers: 26
- Forks: 40
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - PagerDuty/scheduler - A Scala library for scheduling arbitrary code to run at an arbitrary time. (Scala)
README
# Scheduler [![CircleCI](https://circleci.com/gh/PagerDuty/scheduler.svg?style=svg)](https://circleci.com/gh/PagerDuty/scheduler)
## IntroductionThis library schedules arbitrary Scala code (tasks) to run at an arbitrary time. It tries to do this despite changing infrastructure, and it tries to maintain some sense of task ordering.
Scheduler is in production use at PagerDuty. It's meant to be included in Scala services deployed on many servers for redundancy and scaling. It's designed from the ground up to be running in a multi-datacenter environment. We take fault tolerance and reliability very seriously, so using this library is a little more complicated then just including it via SBT.
Scheduler relies on Kafka for task buffering and Cassandra for task persistence. Most documentation is
in the specific guides in doc/.## Additional Documentation
- [Design](doc/design.md)
- [User Guide](doc/user.md)
- [Operations Guide](doc/operations.md)
- [Contributing Guide](doc/contributing.md)## Contact
This library is primarily maintained by the Core Team at PagerDuty. The best way to reach us is by opening a GitHub issue.