1
0
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:
nxshock 2022-03-29 21:38:04 +05:00
parent 62ed212e3c
commit 7d298e05be
8 changed files with 180 additions and 55 deletions

View File

@ -1,6 +1,6 @@
# gron
*cron-like job scheduler*
*SystemD and cron inspired job scheduler*
## Usage

View File

@ -207,9 +207,9 @@
<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>
</td>
<td class="smaller">{{.Description}}</td>
<td class="smaller">{{.JobConfig.Description}}</td>
<td class="nowrap" align="right">
<pre>{{.Cron}}</pre>
<pre>{{.JobConfig.Cron}}</pre>
</td>
<td class="nowrap">{{if gt .CurrentRunningCount 1}}<span class="red">running {{.CurrentRunningCount}} jobs</span>{{else}}{{if .CurrentRunningCount}}<span class="green">&#x25b6; running</span>{{else}}&#x25fc; inactive{{end}}{{end}}</td>
<td>{{.LastStartTime}}</td>

74
job.go
View File

@ -1,8 +1,7 @@
package main
import (
"bytes"
"io/ioutil"
"io"
"os"
"os/exec"
"path/filepath"
@ -11,6 +10,7 @@ import (
"time"
"github.com/BurntSushi/toml"
formatter "github.com/antonfisher/nested-logrus-formatter"
log "github.com/sirupsen/logrus"
)
@ -19,12 +19,15 @@ type JobConfig struct {
Cron string // cron decription
Command string // command for execution
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 {
Name string // from filename
JobConfig
JobConfig JobConfig
// Fields for stats
CurrentRunningCount int
@ -52,13 +55,7 @@ func readJob(filePath string) (*Job, error) {
return job, nil
}
func (js *JobConfig) Write() {
buf := new(bytes.Buffer)
toml.NewEncoder(buf).Encode(*js)
ioutil.WriteFile("job.conf", buf.Bytes(), 0644)
}
func (j *Job) CommandAndParams() (command string, params []string) {
func (j *Job) commandAndParams() (command string, params []string) {
quoted := false
items := strings.FieldsFunc(j.JobConfig.Command, func(r rune) bool {
if r == '"' {
@ -74,6 +71,22 @@ func (j *Job) CommandAndParams() (command string, params []string) {
}
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()
globalMutex.Lock()
@ -81,27 +94,16 @@ func (j *Job) Run() {
j.LastStartTime = startTime.Format(config.TimeFormat)
globalMutex.Unlock()
defer jobLogFile.Close()
defer jobLogFile.WriteString("\n")
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()
/**/
command, params := j.commandAndParams()
cmd := exec.Command(command, params...)
cmd.Stdout = 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()
if err != nil {
log.WithField("job", j.Name).Error(err.Error())
l.WithField("job", j.Name).Error(err.Error())
logEntry.Error(err.Error())
globalMutex.Lock()
j.LastError = err.Error()
@ -113,12 +115,32 @@ func (j *Job) Run() {
}
endTime := time.Now()
log.WithField("job", j.Name).Infof("finished (%s)", endTime.Sub(startTime).Truncate(time.Second).String())
l.Infof("finished (%s)", endTime.Sub(startTime).Truncate(time.Second).String())
logEntry.Infof("Finished (%s).", endTime.Sub(startTime).Truncate(time.Second).String())
globalMutex.Lock()
j.CurrentRunningCount--
j.LastEndTime = endTime.Format(config.TimeFormat)
j.LastExecutionDuration = endTime.Sub(startTime).Truncate(time.Second).String()
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
View 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)
}

View File

@ -64,7 +64,7 @@ func initJobs() error {
return err
}
_, err = c.AddJob(job.Cron, job)
_, err = c.AddJob(job.JobConfig.Cron, job)
if err != nil {
return err
}

36
restartrule.go Normal file
View 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
View 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)
}
}

View File

@ -1,3 +1,6 @@
Cron = "* * * * *"
Command = 'command "param1 param1" param2'
Description = "comment"
NumberOfRestartAttemts = 3
RestartSec = 5
RestartRule = "on-error"