Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shunfei/cronsun
A Distributed, Fault-Tolerant Cron-Style Job System.
https://github.com/shunfei/cronsun
cron crontab fault-tolerance go golang job-scheduler
Last synced: about 1 month ago
JSON representation
A Distributed, Fault-Tolerant Cron-Style Job System.
- Host: GitHub
- URL: https://github.com/shunfei/cronsun
- Owner: shunfei
- License: apache-2.0
- Created: 2017-05-09T07:24:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-06T06:17:43.000Z (6 months ago)
- Last Synced: 2024-08-02T15:48:28.909Z (4 months ago)
- Topics: cron, crontab, fault-tolerance, go, golang, job-scheduler
- Language: Go
- Homepage:
- Size: 74.9 MB
- Stars: 2,896
- Watchers: 111
- Forks: 454
- Open Issues: 85
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- go-awesome - cronsun - distributed task system (Open source library / Task/Timer)
- awesome-golang-repositories - cronsun - Tolerant Cron-Style Job System. (Repositories)
- awesome-hacking-lists - shunfei/cronsun - A Distributed, Fault-Tolerant Cron-Style Job System. (Go)
README
# cronsun [![Build Status](https://travis-ci.org/shunfei/cronsun.svg?branch=master)](https://travis-ci.org/shunfei/cronsun)
`cronsun` is a distributed cron-style job system. It's similar with `crontab` on stand-alone `*nix`.
[简体中文](README_ZH.md)
## Purpose
The goal of this project is to make it much easier to manage jobs on lots of machines and provides high availability.
`cronsun` is different from [Azkaban](https://azkaban.github.io/), [Chronos](https://mesos.github.io/chronos/), [Airflow](https://airflow.incubator.apache.org/).## Features
- Easy manage jobs on multiple machines
- Management panel
- Mail service
- Multi-language support
- Simple authentication and accounts manager(default administrator email and password: [email protected]/admin)## Status
`cronsun` has been tested in production for years on hundreds of servers.
Although the current version is not release as an stable version, but we think it is completely available for the production environment.
We encourage you to try it, it's easy to use, see how it works for you. We believe you will like this tool.## Architecture
```
[web]
|
--------------------------
(add/del/update/exec jobs)| |(query job exec result)
[etcd] [mongodb]
| ^
-------------------- |
| | | |
[node.1] [node.2] [node.n] |
(job exec fail)| | | |
[send mail]<-----------------------------------------(job exec result)```
## Security
`cronsun` support security with `security.json` config. When `open=true`, job command is only allow local files with special extension on the node.
```json
{
"open": true,
"#users": "allowed execution users",
"users": [
"www", "db"
],
"#ext": "allowed execution file extensions",
"ext": [
".cron.sh", ".cron.py"
]
}
```## Getting started
### Setup / installation
Install from binary [latest release](https://github.com/shunfei/cronsun/releases/latest)
Or build from source, require `go >= 1.11+`.
> NOTE: The branch `master` is not in stable, using Cronsun for production please checkout corresponding tags.```
export GO111MODULE=on
go get -u github.com/shunfei/cronsun
cd $GOPATH/src/github.com/shunfei/cronsun
go mod vendor
sh build.sh
```### Run
1. Install [MongoDB](http://docs.mongodb.org/manual/installation/)
2. Install [etcd3](https://github.com/coreos/etcd)
3. Open and update Etcd(`conf/etcd.json`) and MongoDB(`conf/db.json`) configurations
4. Start cronnode: `./cronnode -conf conf/base.json`, start cronweb: `./cronweb -conf conf/base.json`
5. Open `http://127.0.0.1:7079` in browser
6. Login with username `[email protected]` and password `admin`## Screenshot
**Brief**:
![](doc/img/Cronsun_dashboard_en.png)
**Exec result**:
![](doc/img/Cronsun_log_list_en.png)
![](doc/img/Cronsun_log_item_en.png)**Job**:
![](doc/img/Cronsun_job_list_en.png)
![](doc/img/Cronsun_job_new_en.png)
**Node**:
![](doc/img/Cronsun_node_en.png)
## Credits
cron is base on [robfig/cron](https://github.com/robfig/cron)