Distributed p2p system to manage resources. Primarily was developed in order to manage the dynamic Jenkins CI and simplify the infrastructure management, but can be used in various applications to have self-management resources and simple REST API to manage p2p cluster.
Could be found here: https://github.com/adobe/aquarium-fish/issues/
In order to test the Fish locally with just one node or multiple local nodes:
$ ./aquarium-fish
There is a number of options you can pass to the application, check --help
to get them, but the
most important ones is:
--api
- is where the Fish API will listen, default is0.0.0.0:8001
(it also is used for meta so your VMs will be able to ask for the metadata)--db
- is the listen interface for database sync. Exactly this address will be used by the other nodes.--cfg
- use the yaml config to specify the options
If you want to use the secondary node on the same host - provide a simple config with overridden node name, because the first will use hostname as node name:
- test.yml
--- node_name: test-2 db_address: 127.0.0.1:9002 api_address: 0.0.0.0:8002 db_join: - 127.0.0.1:9001
$ ./aquarium-fish --cfg test.yml
Quite the same as running locally, but --db
should be the actual ip/name endpoint of the host,
since it will be used to connect by the other nodes (so 0.0.0.0 will not work here). For example if
you can connect from outside to the host via 10.0.4.35
- you need to use 10.0.4.35:9001
here.
By default Fish generates a simple CA and key/cert pair for Server & Client auth - it just shows the example of cluster communication transport protection via TLS. If CA certificate is not exists - it will be generated, if it exists - generation will be skipped. If node certificate and key are exists, they will be used, but if not - Fish will try to generate them out of CA cert and key. So CA key is not needed if you already generated the node certificate yourself.
TLS encryption is a must, so make sure you know how to generate CA certificate and control CA to issue the node certificates. Today it's the most secure way to ensure noone will join your cluster without your permission and do not intercept the API & DB communication. Separated CA is used to check that the server (or client) is the one is approved.
Maybe in the future Fish will allow to manage the cluster CA and issue certificate for a new node, but for now just check openssl and https://github.com/jcmoraisjr/simple-ca for reference.
To initialize cluster you need to create users with admin account and create labels you want to use.
In order to use the resources manager manually - check the API
section and follow the next general
directions:
- Get your user and it's token
- Check the available labels on the cluster (and create some if you need them)
- Create Application with description of what kind of resource you need
- Check the Status of your application and wait for "ALLOCATED" status
- Now resource is allocated, it's all yours and, probably, already pinged you
- When you're done - request Application to deallocate the resource
- Make sure the Application status is "DEALLOCATED"
To use with Jenkins - you can install Aquarium Net Jenkins cloud plugin to dynamically allocate the required resources. Don't forget to add the served labels to the cloud and you will be ready to go.
For now the policy is quite simple - admin
user can do anything, regular users can just use the
cluster (create application, list their resources and so on). The applications & resources could
contain sensetive information (like jenkins agent secret), so user will see just the owned
applications and will be able to control only them.
Go was choosen due to it's go-dqlite, simple one-binary executable resources management with embedded sql database that is synced automatically between the nodes. It's needed to store cluster information for decision making (for example: which node will allocate the requested resources to handle the workload in the most efficient way).
Resource drivers is the way nodes managing the resources. For example - if I have VMWare Fusion
installed on my machine - I can run Fish and it's VMX driver will automatically detect that it can
run VMX images. In case I have docker installed too - I can use both for different workloads or
select the ones I actually want to use by --drivers
option or via the API.
The cluster supports the internal SQL database, which provides a common storage for the cluster info. The current schema could be found in OpenAPI format here:
- When the Fish app is running locally: https://0.0.0.0:8001/api/
- YAML specification: https://github.com/adobe/aquarium-fish/blob/master/docs/openapi.yaml
The cluster can't force any node to follow the majority decision, so the rules are providing full consensus.
For now the rule is simple - when all the nodes are voted each node can find the first node in the vote table that answered "yes". There is a couple of protection mechanisms like "CreateAt" to find the actual first one and "Rand" field as last resort (if the other params are identical).
In the future to allow to update cluster with the new rules the Rules table will be created and the different versions of the Aquarium Fish could find the common rules and switch them depends on Application request. Rules will be able to lay on top of any information about the node.
The election process:
- Once per 5 seconds the node checks the voting process
- If there is Application with status NEW:
- If no Node Vote for the Application exists
- Fish creates Vote depends on the current status of the Node and round of the election
- If all the active cluster Nodes are voted
- If there is "Yes" Votes
- Application Election Rule applied to the votes
- If the current Node is elected
- If current Node is not executing Application already
- Set Application status to ELECTED
- Run the allocate process
- If current Node is not executing Application already
- Else if the current Node is not elected
- If Application has no NEW status
- Remove Vote and forget about the Application
- Else if Vote round timeout is passed
- Decide the elected node was not took the Application
- execute next round vote
- If Application has no NEW status
- If there is no "Yes" Votes
- If Vote round delay is passed
- Increment Vote round and vote again on the current Node status
- If Vote round delay is passed
- If there is "Yes" Votes
- If no Node Vote for the Application exists
Simplify the cluster management, for example adding labels or check the status.
TODO
There is a number of ways to communicate with the Fish cluster, and the most important one is API.
You can use curl
, for example, to do that:
$ curl -u "admin:YOUR_TOKEN" -X GET 127.0.0.1:8001/api/v1/label/
{"message": "Cluster resources list", "data": [{...}, ...]}
The current API could be found in OpenAPI format here:
- When the Fish app is running locally: https://0.0.0.0:8001/api/
- YAML specification: https://github.com/adobe/aquarium-fish/blob/master/docs/openapi.yaml