rickover icon indicating copy to clipboard operation
rickover copied to clipboard

A job queue and scheduler written in Go, backed by Postgres, and available over HTTP

Results 5 rickover issues
Sort by recently updated
recently updated
newest added

The parent company is defunct and I can't push changes to this project anymore. I'm continuing development at https://github.com/kevinburke/rickover

Occasionally the duration reported by calling `a := time.Now(); b := time.Now(); c := b.Since(a)` can be negative, since Go does not use a monotonic clock source for `time.Now()` calls....

Since job configuration requires a restart to be loaded, cannot (currently) be updated, and is very small (would likely scale to 100's of jobs at least), I'd like to propose...

At first glance, these seem fully functional, and except for the hardcoding of the test credentials, ready to go for production use. Is there a reason the user is encouraged...

When a job fails currently, it has a backoff of `2^count` seconds. https://github.com/Shyp/rickover/blob/dba4e9add9ec4c0541bb4a777fa8d209feeb9221/services/status_callback.go#L88 Sometimes it's useful to wait much longer, like 30 seconds between runs. It would be nice if...