orchestrator 3.0.2 GA is released and available for download (see also packagecloud repository).
3.0.2
is the first stable release in the 3.0*
series, introducing (recap from 3.0 pre-release announcement):
orchestrator/raft
Raft is a consensus protocol, supporting leader election and consensus across a distributed system. In an orchestrator/raft
setup orchestrator
nodes talk to each other via raft protocol, form consensus and elect a leader. Each orchestrator
node has its own dedicated backend database. The backend databases do not speak to each other; only the orchestrator
nodes speak to each other.
No MySQL replication setup needed; the backend DBs act as standalone servers. In fact, the backend server doesn’t have to be MySQL, and SQLite
is supported. orchestrator
now ships with SQLite
embedded, no external dependency needed.
For details, please refer to the documentation:
SQLite
Suggested and requested by many, is to remove orchestrator
‘s own dependency on a MySQL backend. orchestrator
now supports a SQLite backend.
SQLite
is a transactional, relational, embedded database, and as of 3.0
it is embedded within orchestrator
, no external dependency required.
orchestrator-client
orchestrator-client is a client shell script which mimics the command line interface, while running curl | jq
requests against the HTTP API. It stands to simplify your deployments: interacting with the orchestrator service via orchestrator-client
is easier and only requires you to place a shell script (this is as opposed to installing the orchestrator
binary + configuration file).
orchestrator-client
is the way to interact with your orchestrator/raft
cluster. orchestrator-client
now has its own RPM/deb
release package.
You may still use the web interface, web API ; and a special --ignore-raft-setup
keeps power at your hand (use at your own risk).
State of orchestrator/raft
orchestrator/raft
is a big change: Continue reading » “orchestrator 3.0.2 GA released: raft consensus, SQLite”