mirror of
https://github.com/nxshock/gron.git
synced 2024-11-27 03:41:00 +05:00
Add on error restart job options
This commit is contained in:
parent
62ed212e3c
commit
7d298e05be
@ -1,6 +1,6 @@
|
|||||||
# gron
|
# gron
|
||||||
|
|
||||||
*cron-like job scheduler*
|
*SystemD and cron inspired job scheduler*
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -207,9 +207,9 @@
|
|||||||
<form action="/start" method="get" id="form-{{.Name}}"></form>
|
<form action="/start" method="get" id="form-{{.Name}}"></form>
|
||||||
<button{{if gt .CurrentRunningCount 0}} class="runningbg" {{else}}{{if .LastError}} class="errorbg" {{end}}{{end}} type="submit" form="form-{{.Name}}" name="jobName" value="{{.Name}}" {{if gt .CurrentRunningCount 0}} disabled{{end}}>{{.Name}}</button>
|
<button{{if gt .CurrentRunningCount 0}} class="runningbg" {{else}}{{if .LastError}} class="errorbg" {{end}}{{end}} type="submit" form="form-{{.Name}}" name="jobName" value="{{.Name}}" {{if gt .CurrentRunningCount 0}} disabled{{end}}>{{.Name}}</button>
|
||||||
</td>
|
</td>
|
||||||
<td class="smaller">{{.Description}}</td>
|
<td class="smaller">{{.JobConfig.Description}}</td>
|
||||||
<td class="nowrap" align="right">
|
<td class="nowrap" align="right">
|
||||||
<pre>{{.Cron}}</pre>
|
<pre>{{.JobConfig.Cron}}</pre>
|
||||||
</td>
|
</td>
|
||||||
<td class="nowrap">{{if gt .CurrentRunningCount 1}}<span class="red">running {{.CurrentRunningCount}} jobs</span>{{else}}{{if .CurrentRunningCount}}<span class="green">▶ running</span>{{else}}◼ inactive{{end}}{{end}}</td>
|
<td class="nowrap">{{if gt .CurrentRunningCount 1}}<span class="red">running {{.CurrentRunningCount}} jobs</span>{{else}}{{if .CurrentRunningCount}}<span class="green">▶ running</span>{{else}}◼ inactive{{end}}{{end}}</td>
|
||||||
<td>{{.LastStartTime}}</td>
|
<td>{{.LastStartTime}}</td>
|
||||||
|
74
job.go
74
job.go
@ -1,8 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"io"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -11,6 +10,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/BurntSushi/toml"
|
"github.com/BurntSushi/toml"
|
||||||
|
formatter "github.com/antonfisher/nested-logrus-formatter"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -19,12 +19,15 @@ type JobConfig struct {
|
|||||||
Cron string // cron decription
|
Cron string // cron decription
|
||||||
Command string // command for execution
|
Command string // command for execution
|
||||||
Description string // job description
|
Description string // job description
|
||||||
|
NumberOfRestartAttemts int
|
||||||
|
RestartSec int // the time to sleep before restarting a job (seconds)
|
||||||
|
RestartRule RestartRule // Configures whether the job shall be restarted when the job process exits
|
||||||
}
|
}
|
||||||
|
|
||||||
type Job struct {
|
type Job struct {
|
||||||
Name string // from filename
|
Name string // from filename
|
||||||
|
|
||||||
JobConfig
|
JobConfig JobConfig
|
||||||
|
|
||||||
// Fields for stats
|
// Fields for stats
|
||||||
CurrentRunningCount int
|
CurrentRunningCount int
|
||||||
@ -52,13 +55,7 @@ func readJob(filePath string) (*Job, error) {
|
|||||||
return job, nil
|
return job, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (js *JobConfig) Write() {
|
func (j *Job) commandAndParams() (command string, params []string) {
|
||||||
buf := new(bytes.Buffer)
|
|
||||||
toml.NewEncoder(buf).Encode(*js)
|
|
||||||
ioutil.WriteFile("job.conf", buf.Bytes(), 0644)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (j *Job) CommandAndParams() (command string, params []string) {
|
|
||||||
quoted := false
|
quoted := false
|
||||||
items := strings.FieldsFunc(j.JobConfig.Command, func(r rune) bool {
|
items := strings.FieldsFunc(j.JobConfig.Command, func(r rune) bool {
|
||||||
if r == '"' {
|
if r == '"' {
|
||||||
@ -74,6 +71,22 @@ func (j *Job) CommandAndParams() (command string, params []string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (j *Job) Run() {
|
func (j *Job) Run() {
|
||||||
|
jobLogFile, _ := os.OpenFile(filepath.Join(config.LogFilesPath, j.Name+".log"), os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)
|
||||||
|
jobLogFile.WriteString("\n")
|
||||||
|
|
||||||
|
logWriter := io.MultiWriter(logFile, jobLogFile)
|
||||||
|
|
||||||
|
log := log.New()
|
||||||
|
log.SetFormatter(&formatter.Formatter{
|
||||||
|
TimestampFormat: config.TimeFormat,
|
||||||
|
HideKeys: true,
|
||||||
|
NoColors: true,
|
||||||
|
TrimMessages: true})
|
||||||
|
log.SetOutput(logWriter)
|
||||||
|
logEntry := log.WithField("job", j.Name)
|
||||||
|
|
||||||
|
for i := 0; i < j.JobConfig.NumberOfRestartAttemts+1; i++ {
|
||||||
|
logEntry.Info("Started.")
|
||||||
startTime := time.Now()
|
startTime := time.Now()
|
||||||
|
|
||||||
globalMutex.Lock()
|
globalMutex.Lock()
|
||||||
@ -81,27 +94,16 @@ func (j *Job) Run() {
|
|||||||
j.LastStartTime = startTime.Format(config.TimeFormat)
|
j.LastStartTime = startTime.Format(config.TimeFormat)
|
||||||
globalMutex.Unlock()
|
globalMutex.Unlock()
|
||||||
|
|
||||||
defer jobLogFile.Close()
|
/**/
|
||||||
defer jobLogFile.WriteString("\n")
|
command, params := j.commandAndParams()
|
||||||
|
|
||||||
l := log.New()
|
|
||||||
l.SetOutput(jobLogFile)
|
|
||||||
l.SetFormatter(log.StandardLogger().Formatter)
|
|
||||||
|
|
||||||
log.WithField("job", j.Name).Info("started")
|
|
||||||
l.Info("started")
|
|
||||||
|
|
||||||
command, params := j.CommandAndParams()
|
|
||||||
|
|
||||||
cmd := exec.Command(command, params...)
|
cmd := exec.Command(command, params...)
|
||||||
cmd.Stdout = jobLogFile
|
cmd.Stdout = jobLogFile
|
||||||
cmd.Stderr = jobLogFile
|
cmd.Stderr = jobLogFile
|
||||||
jobLogFile, _ := os.OpenFile(filepath.Join(config.LogFilesPath, j.Name+".log"), os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)
|
|
||||||
|
|
||||||
err := cmd.Run()
|
err := cmd.Run()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithField("job", j.Name).Error(err.Error())
|
logEntry.Error(err.Error())
|
||||||
l.WithField("job", j.Name).Error(err.Error())
|
|
||||||
|
|
||||||
globalMutex.Lock()
|
globalMutex.Lock()
|
||||||
j.LastError = err.Error()
|
j.LastError = err.Error()
|
||||||
@ -113,12 +115,32 @@ func (j *Job) Run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
endTime := time.Now()
|
endTime := time.Now()
|
||||||
log.WithField("job", j.Name).Infof("finished (%s)", endTime.Sub(startTime).Truncate(time.Second).String())
|
logEntry.Infof("Finished (%s).", endTime.Sub(startTime).Truncate(time.Second).String())
|
||||||
l.Infof("finished (%s)", endTime.Sub(startTime).Truncate(time.Second).String())
|
|
||||||
|
|
||||||
globalMutex.Lock()
|
globalMutex.Lock()
|
||||||
j.CurrentRunningCount--
|
j.CurrentRunningCount--
|
||||||
j.LastEndTime = endTime.Format(config.TimeFormat)
|
j.LastEndTime = endTime.Format(config.TimeFormat)
|
||||||
j.LastExecutionDuration = endTime.Sub(startTime).Truncate(time.Second).String()
|
j.LastExecutionDuration = endTime.Sub(startTime).Truncate(time.Second).String()
|
||||||
globalMutex.Unlock()
|
globalMutex.Unlock()
|
||||||
|
|
||||||
|
if err == nil {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if j.JobConfig.RestartRule == No || j.JobConfig.NumberOfRestartAttemts == 0 {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if i == 0 {
|
||||||
|
logEntry.Printf("Job failed, restarting in %d seconds.", j.JobConfig.RestartSec)
|
||||||
|
} else if i+1 < j.JobConfig.NumberOfRestartAttemts {
|
||||||
|
logEntry.Printf("Retry attempt №%d of %d failed, restarting in %d seconds.", i, j.JobConfig.NumberOfRestartAttemts, j.JobConfig.RestartSec)
|
||||||
|
} else {
|
||||||
|
logEntry.Printf("Retry attempt №%d of %d failed.", i, j.JobConfig.NumberOfRestartAttemts)
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(time.Duration(j.JobConfig.RestartSec) * time.Second)
|
||||||
|
|
||||||
|
}
|
||||||
|
jobLogFile.Close()
|
||||||
}
|
}
|
||||||
|
24
job_test.go
Normal file
24
job_test.go
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestReadJob(t *testing.T) {
|
||||||
|
expectedJob := &Job{
|
||||||
|
Name: "job",
|
||||||
|
JobConfig: JobConfig{
|
||||||
|
Cron: "* * * * *",
|
||||||
|
Command: `command "param1 param1" param2`,
|
||||||
|
Description: "comment",
|
||||||
|
NumberOfRestartAttemts: 3,
|
||||||
|
RestartSec: 5,
|
||||||
|
RestartRule: OnError}}
|
||||||
|
|
||||||
|
job, err := readJob("tests/job.conf")
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
assert.Equal(t, expectedJob, job)
|
||||||
|
}
|
2
main.go
2
main.go
@ -64,7 +64,7 @@ func initJobs() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = c.AddJob(job.Cron, job)
|
_, err = c.AddJob(job.JobConfig.Cron, job)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
36
restartrule.go
Normal file
36
restartrule.go
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
type RestartRule int
|
||||||
|
|
||||||
|
const (
|
||||||
|
No RestartRule = iota
|
||||||
|
OnError
|
||||||
|
)
|
||||||
|
|
||||||
|
func (r *RestartRule) MarshalText() (text []byte, err error) {
|
||||||
|
switch *r {
|
||||||
|
case No:
|
||||||
|
return []byte("no"), nil
|
||||||
|
case OnError:
|
||||||
|
return []byte("on-error"), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil, fmt.Errorf("unknown restart rule: %v", r)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *RestartRule) UnmarshalText(text []byte) error {
|
||||||
|
switch string(text) {
|
||||||
|
case "no":
|
||||||
|
*r = No
|
||||||
|
return nil
|
||||||
|
case "on-error":
|
||||||
|
*r = OnError
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return fmt.Errorf("unknown restart rule: %s", string(text))
|
||||||
|
}
|
40
restartrule_test.go
Normal file
40
restartrule_test.go
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestRestartRuleMarshalText(t *testing.T) {
|
||||||
|
var tests = []struct {
|
||||||
|
expected []byte
|
||||||
|
value RestartRule
|
||||||
|
}{
|
||||||
|
{[]byte("no"), No},
|
||||||
|
{[]byte("on-error"), OnError},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
got, err := test.value.MarshalText()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, test.expected, got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestRestartRuleUnmarshalText(t *testing.T) {
|
||||||
|
var tests = []struct {
|
||||||
|
expected RestartRule
|
||||||
|
value []byte
|
||||||
|
}{
|
||||||
|
{No, []byte("no")},
|
||||||
|
{OnError, []byte("on-error")},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
var r RestartRule
|
||||||
|
err := r.UnmarshalText(test.value)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, test.expected, r)
|
||||||
|
}
|
||||||
|
}
|
@ -1,3 +1,6 @@
|
|||||||
Cron = "* * * * *"
|
Cron = "* * * * *"
|
||||||
Command = 'command "param1 param1" param2'
|
Command = 'command "param1 param1" param2'
|
||||||
Description = "comment"
|
Description = "comment"
|
||||||
|
NumberOfRestartAttemts = 3
|
||||||
|
RestartSec = 5
|
||||||
|
RestartRule = "on-error"
|
||||||
|
Loading…
Reference in New Issue
Block a user