Version 1 of a Go library for interacting with the Aurora Scheduler
* Deleting permament error as it doesn't make sense. Just return a plain old error and that will be considered permanent. * Removing double closure at as it's unmaintainable and can be error prone. Separated back offs into a generic one and a thrift call specific one. * ZK leader finder now returns a temporary error instead of constantly no leader found and quitting. It could be that the leader info is being propagated so it's worth trying another time. * Adding more logging to the retry. * Wrapping lock and unlock in an anonymous function so that we can use defer on unlock such that it is called in the case of a panic. |
||
---|---|---|
.github | ||
docs | ||
examples | ||
gen-go/apache/aurora | ||
response | ||
vendor | ||
.auroraversion | ||
.gitignore | ||
auroraAPI.thrift | ||
clusters.go | ||
clusters_test.go | ||
container.go | ||
errors.go | ||
generateBindings.sh | ||
Gopkg.lock | ||
Gopkg.toml | ||
job.go | ||
LICENSE | ||
logger.go | ||
monitors.go | ||
README.md | ||
realis.go | ||
realis_e2e_test.go | ||
retry.go | ||
updatejob.go | ||
zk.go |
gorealis 
Go library for interacting with Apache Aurora.
Aurora version compatibility
Please see .auroraversion to see the latest Aurora version against which this library has been tested.
Usage
To Do
- Create or import a custom transport that uses https://github.com/jmcvetta/napping to improve efficiency
Contributions
Contributions are always welcome. Please raise an issue so that the contribution may be discussed before it's made.