Amboy is a collection of interfaces and tools for running and managing asynchronous background work queues in the context of Go programs, and provides a number of interchangeable and robust methods for running jobs.
Queue implementations impose ordering and dispatching behavior, and describe the storage of jobs before and after work is complete. Current queue implementations include:
- a limited size queue that keep a fixed number of completed jobs in memory, which is ideal for long-running background processes.
- remote queues that store all jobs in an external storage system (e.g. a database) to support architectures where multiple processes can service the same underlying queue.
The QueueGroup interface provides a mechanism to manage collections of queues. There are remote and local versions of the queue group possible, but these groups make it possible to create new queues at runtime, and improve the isolation of queues from each other.
The RetryableQueue <https://godoc.org/github.com/mongodb/amboy#RetryableQueue>_ interface provides a superset of the queue functionality. Along with regular queue operations, it also supports jobs that can retry. When a job finishes executing and needs to retry (e.g. due to a transient error), the retryable queue will automatically re-run the job.
Runners are the execution component of the worker pool, and are embedded within the queues, and can be injected at run time before starting the queue pool. The LocalWorkers implementation executes jobs in a fixed-size worker pool, which is the default of most queue implementations.
Additional implementation provide rate limiting, and it would be possible to implement runners which used the REST interface to distribute workers to a larger pool of processes, where existing runners simply use go routines.
The DependencyManager interface makes it possible for jobs to express relationships to each other and to their environment so that Job operations can noop or block if their requirements are not satisfied. The data about relationships between jobs can inform job ordering.
The handling of dependency information is the responsibility of the queue implementation. Most queue implementations do not support this, unless explicitly stated.
The management package centers around a management interface that provides methods for reporting and safely interacting with the state of jobs.
The REST interface provides tools to manage jobs in an Amboy queue provided as a service. The rest package in Amboy provides the tools to build clients and services, although any client that can construct JSON-formatted Job object can use the REST API.
Additionally the REST package provides remote implementations of the management interface which makes it possible to manage and report on the jobs in an existing queue, and the abortable pool interface, that makes it possible to abort running jobs. These management tools can help administrators of larger amboy systems gain insights into the current behavior of the system, and promote safe and gentle operational interventions.
See the documentation of the REST package
The Logger package provides amboy.Queue backed implementation of the grip logging system's sender interface for asynchronous log message delivery. These jobs do not support remote-backed queues.
The following patterns have emerged during our use of Amboy.
Embed the job.Base
type in your Job implementations. This provides a number of helpers for
basic job definition, in addition to implementations of all general methods in
the interface. With the Base, you only need to implement a Run()
method and
whatever application logic is required for the job.
The only case where embedding the Base type may be contraindicated is in conjunction with the REST interface, as the Base type may require more complicated initialization processes.
If your core application operations are implemented in terms of Jobs, then
you can: execute them independently of queues by calling the Run()
method,
use a locally backed queue for synchronous operation for short running queues,
and use a limited size queue or remote-backed queue as part of a long running
service.
Please submit pull requests or issues with additional examples of amboy use.
See the API documentation <https://godoc.org/github.com/mongodb/amboy> for more information about amboy interfaces and internals.
Amboy is being continuously developed for Evergreen <https://github.com/evergreen-ci/evergreen>. This is not a stable library and upgrades are at your own risk - it may be changed to add, remove, or modify functionality in a way that breaks backward compatibility.
Amboy uses Go modules. To download the modules
make mod-tidy
All project automation is managed by a makefile, with all output captured in the build directory. Consider the following operations:
make compile # runs a test compile make test # tests all packages make test-<package> # runs the tests only for a specific packages make lint # lints all packages make lint-<package> # lints a specific package make html-coverage # generates the HTML coverage report for all packages make html-coverage-<package> # generates the HTML coverage report for a specific package
The buildsystem also has a number of flags, which may be useful for more iterative development workflows:
RUN_TEST=<TestName> # specify a test name or regex to run a subset of tests RUN_COUNT=<num> # run a test more than once to isolate an intermittent failure RACE_DETECTOR=true # run specified tests with the race detector enabled.
Please file all issues in the EVG project in the MongoDB Jira instance.