You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
QLeelulu 7a8cb47acb some optimize: 6 years ago
.github Update issue template 8 years ago
bin some optimize: 6 years ago
conf some optimize: 6 years ago
db use machine id instead of ip 7 years ago
doc/img Update screenshot(en) of dashboard page 7 years ago
event bugfix: emit nil event 7 years ago
log Added login and accounts manager modules 8 years ago
node csctl: add sync command for node to sync node info to mongodb 7 years ago
utils remove useless code 7 years ago
web Added new readonly role: Reporter 7 years ago
.editorconfig 检查用作key的id和名称,添加获取活动节点的接口 8 years ago
.gitignore cmd: Add rmold command for node 7 years ago
.travis.yml ci for go module 6 years ago
LICENSE Update LICENSE 7 years ago
README.md Add go module 6 years ago
README_ZH.md Add go module 6 years ago
account.go Added new readonly role: Reporter 7 years ago
build.sh Update build.sh to build new tool: csctl 7 years ago
client.go Fix etcd configuration json fields 7 years ago
common.go csctl: for cmd tools, watch configuration files is unnecessary. 7 years ago
csctl.go csctl: add sync command for node to sync node info to mongodb 7 years ago
errors.go pkg: mv models to cronsun 8 years ago
go.mod Add go module 6 years ago
go.sum Add go module 6 years ago
group.go remove github.com/coreos/etcd/mvcc/mvccpb 7 years ago
id.go pkg: mv models to cronsun 8 years ago
job.go Alarm message improvement 7 years ago
job_log.go UI: 7 years ago
mdb.go pkg: mv models to cronsun 8 years ago
node.go csctl: add sync command for node to sync node info to mongodb 7 years ago
noticer.go Improve node warning message 7 years ago
once.go pkg: mv models to cronsun 8 years ago
proc.go pkg: remove sunteng log 8 years ago
release.sh Add releash script 8 years ago
version.go Added new readonly role: Reporter 7 years ago

README.md

cronsun Build Status

cronsun is a distributed cron-style job system. It's similar with crontab on stand-alone *nix.

简体中文

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, Chronos, Airflow.

Features

  • Easy manage jobs on multiple machines
  • Managemant panel
  • Mail service
  • Multi-language support
  • Simple authentication and accounts manager(default administrator email and password: admin@admin.com/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.

{
    "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

Or build from source, require go >= 1.11+.

go get -u github.com/shunfei/cronsun
cd $GOPATH/src/github.com/shunfei/cronsun
go mod vendor
sh build.sh

Run

  1. Install MongoDB
  2. Install etcd3
  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

Screenshot

Brief:

Exec result:

Job:

Node:

Credits

cron is base on robfig/cron