Add Your Own Builtins
Last updated
Was this helpful?
Last updated
Was this helpful?
Some service functionalities have ubiquitous demand making them suitable candidates to be directly deployed to a peer node. The (DHT) is an example of builtin service. The remainder of this tutorial guides you through the steps necessary to create and deploy a Builtin service.
In order to have a service available out-of-the-box with the necessary startup and scheduling scripts, we can take advantage of the Fluence for Node native services. This feature handles the complete deployment process including
module uploads,
service deployment and
script initialization and scheduling
Note that the deployment process is a fully automated workflow requiring you to merely submit your service assets, i.e., Wasm modules and configuration scripts, in the appropriate format as a PR to the repository.
At this point you should have a solid grasp of creating service modules and their associated configuration files.
Our first step is fork the repo by clicking on the Fork button, upper right of the repo webpage, and follow the instructions to create a local copy. In your local repo copy, checkout a new branch with a new, unique branch name:
In our new branch, we create a directory with the service name in the deploy/builtin directory:
Replace my-new-super-service with your service name.
Now we can build and populate the required directory structure with your service assets. You should put your service files in the corresponding my-new-super-service directory.
In order to deploy a builtin service, we need
the Wasm file for each module required for the service
the blueprint file for the service
the optional start and scheduling scripts
Blueprints capture the service name and dependencies:
Where
name specifies the service's name and
dependencies list the names of the Wasm modules or the Blake3 hash of the Wasm module
In the above example, my_module_i refers to ith module created when you compiled your service code
If you decide to use the hash approach, please use the hash for the config files names as well (see below).
Start scripts, which are optional, execute once after service deployment or node restarts and are submitted as AIR files and may be accompanied by a json file containing the necessary parameters.
and the associated data file:
Scheduling scripts allow us to decouple service execution from the client and instead can rely on a cron-like scheduler running on a node to trigger our service(s).
Now that we got our requirements covered, we can populate the directory structure we started to lay out at the beginning of this section. As mentioned above, service deployment as a builtin is an automated workflow one our PR is accepted. Hence, it is imperative to adhere to the directory structure below:
The easiest way to get the Blake3 hash of our Wasm modules is to install the utility:
For a complete example, please see the builtin:
which is based on the service project.