Creating Your Own Bacalhau Network
Introduction
While we (Expanso) offer a public network for testing out Bacalhau workloads, your best bet is to create your own private network so you can securely run private workloads.
If you are familiar with running clusters with other clustered orchestration systems (Kubernetes, Mesosphere, DataBricks/Spark, Cloudera/Hadoop, Nomad, etc), we think you will be pleasantly surprised how easy it is to set up your first Bacalhau cluster!
This tutorial describes the process of creating your own private network from multiple nodes, configuring the nodes and running demo jobs.
TLDR
Download the CLI for setting up a Bacalhau cluster. Hang onto this URL, you'll need it for all the nodes you set up (both orchestrator and compute nodes).
Start the Orchestrator node:
Install Bacalhau on each node you want to run your compute on (use the same URL)
Run the server on the Compute node
Done! You can run an example, like:
Prerequisites
Prepare the hosts on which the nodes are going to be set up. They could be:
Physical Hosts
Local Hypervisor VMs
An executor (Bash, Docker Containers, WASM, etc)
Install Bacalhau on each host
Ensure that all nodes are connected to the same network and that the necessary ports are open for communication between them. This will require bidirectional communication on port 4222 between all nodes, and port 1234 to the orchestrator node.
Ensure your nodes have an internet connection in case you have to download or upload any data (docker images, input data, results). This is not required but most jobs require some form of network connectivity (even just for downloading containers).
If you want to run Docker workloads, ensure that Docker Engine is installed.
Start Initial Orchestrator Node
The Bacalhau network consists of nodes of two types: compute and orchestrator. Compute Node is responsible for executing jobs and producing results. Orchestrator Node is responsible for handling user requests, forwarding jobs to compute nodes and monitoring the job lifecycle.
The first step is to start up the initial Orchestrator node. This node will connect to nothing but will listen for connections.
Create and Set Up a Token
When you set up a network for the first time, any compute node can join. This can be dangerous - malicious nodes could join your network and "see" jobs being executed, bid on jobs to try to capture them, etc. We don't recommend this!
We recommend adding a Compute Token to the orchestrator. This will mean only nodes that join the network with the token will be allowed to join.
While it is not REQUIRED to run with a compute token to join, we highly recommend it!
Let's use the uuidgen
tool to create our token, then add it to the Bacalhau configuration and run the orchestrator node:
Now start (or restart) your orchestrator node like usual.
This will produce output similar to this, indicating that the node is up and running:
Your orchestrator now requires a token to join. Awesome!
Create and Connect Compute Node
Now let's start a compute node on it and connect to the orchestrator node. You'll use the same token
Then execute the serve
command to connect to the orchestrator node:you created earlier, but add it to a different configuration setting.
This will produce output similar to this, indicating that the node is up and running:
To ensure that the nodes are connected to the network, run the following command, specifying the public IP of the orchestrator node:
This will produce output similar to this, indicating that the nodes belong to the same network:
You have your first network up and running!
Submitting Jobs
You can submit your jobs using the bacalhau docker run
, bacalhau wasm run
and bacalhau job run
commands. For example submit a hello-world job:
If you would like to avoid adding the API.Host
you can configure your client's default by either setting an environment variable:
export BACALHAU_API_HOST=<IP-address-of-orchestrator>
Or adding it to your config:
bacalhau config set API.Host=<IP-address-of-orchestrator>
Publishers and Sources Configuration
By default only local
publisher and URL
& local
sources are available on the compute node. Out of the box Bacalhau also supports:
Though S3 is typically associated with Amazon Web Services, the S3 publisher is compatible with any S3 compatible blob store service. This includes AWS S3, GCP storage, Azure Blob, Oracle Cloud, and many others.
The following describes how to configure the appropriate sources and publishers:
To set up S3 publisher you need to specify environment variables such as AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
, populating a credentials file to be located on your compute node, i.e. ~/.aws/credentials
, or creating an IAM role for your compute nodes if you are utilizing cloud instances.
Your chosen publisher can be set for your Bacalhau compute nodes declaratively or imperatively using either configuration yaml file:
Or within your imperative job execution commands:
S3 compatible publishers can also be used as input sources for your jobs, with a similar configuration.
Best Practices for Production Use Cases
When using a private cluster in production, here are a few considerations to note.
Ensure you are running the Bacalhau agents with limited permissions. This enhances security and reduces the risk of unauthorized access to critical system resources.
Utilize a service file to manage the Bacalhau process, ensuring the correct user is specified and consistently used. Here’s a sample service file
Create an authentication file for your clients. A dedicated authentication file or policy can ease the process of maintaining secure data transmission within your network. With this, clients can authenticate themselves, and you can limit the Bacalhau API endpoints unauthorized users have access to.
Ensure separation of concerns in your cloud deployments by mounting the Bacalhau repository on a non-boot disk. This prevents instability on shutdown or restarts and improves performance within your host instances.
For many other common questions, we recommend checking out the Bacalhau FAQ.
That's all folks! 🎉 Please contact us on Slack #bacalhau
channel for questions and feedback!
Last updated