Skip to main content

Golem dapp-runner - a high-level interface for running decentralized applications using the Golem Network.

Project description

Golem dApp Runner

dapp-runner is a utility that allows you to run decentralized applications on Golem. It uses simple application descriptors expressed in yaml, similar to those used by tools like docker-compose.

dapp-runner runs alongside the Golem daemon and uses yapapi, Golem's Python high-level API to communicate with it. As opposed to using plain yapapi though, deployment of applications on Golem using dapp-runner requires no code and no experience in Python.

GAP-16 / Multi-service application deployment framework

In its present form, the dapp-runner constitutes an initial reference implementation of the multi-service application deployment framework described in GAP-16.

Following features of the framework are currently supported:

  • Descriptor "Apply" operation
  • Single-YAML package support
  • Merging descriptor files
  • GAOM explicit dependency syntax
  • GAOM object dependency graph [currently limited to the services' explicit dependency syntax]

Relationship with dapp-manager

While the dapp-runner is perfectly capable of running decentralized apps on its own, we are also providing a separate tool to facilitate running and managing multiple applications on a single machine, namely, the dapp-manager.

dApp Manager keeps track of the launched apps and allows you to easily query their output streams. It uses the dapp-runner as its back-end and both require the yagna daemon to communicate with the rest of the Golem Network.

Quick start

Yagna daemon

To run Golem apps, dapp-runner requires a properly configured yagna daemon. In the future, you'll be able to provision apps using external supervisor machines which will run a yagna daemon on your behalf.

For now, please follow the "Requestor development: a quick primer" tutorial and ensure that your yagna is up and running. Only the first part of this tutorial is required - you don't need to run the blender example.

Most importantly, make sure you have set the YAGNA_APPKEY in your evironment, e.g. with:

export YAGNA_APPKEY=insert-your-32-char-app-key-here

or, on Windows:

set YAGNA_APPKEY=insert-your-32-char-app-key-here

and if you don't know what your app-key is, you can always query yagna with:

yagna app-key list

Python environment

First, ensure you have Python 3.8 or later:

python3 --version

[ depending on the platform, it may be just python instead of python3 ]

If your Python version is older, consider using pyenv.

Once your python interpreter reports a version 3.8 or later, you can set-up your virtual environment:

python3 -m venv ~/.envs/dapp-runner
source ~/.envs/dapp-runner/bin/activate

or, if you're on Windows:

python -m venv --clear %HOMEDRIVE%%HOMEPATH%\.envs\dapp-runner
%HOMEDRIVE%%HOMEPATH%\.envs\dapp-runner\Scripts\activate.bat

DApp runner

Clone the repository:

git clone --recurse-submodules https://github.com/golemfactory/dapp-runner.git

Install the dependencies

cd dapp-runner
pip install -U pip poetry
poetry install

Run an example application:

Make sure your yagna daemon is running, you have initialized the payment driver with yagna payment init --sender, and that you have set the YAGNA_APPKEY environment variable.

Then run:

dapp-runner start --config configs/default.yaml dapp-store/apps/webapp.yaml

You should see the application being deployed on the Golem Network and once it's up, you'll be greeted with:

{"http": {"local_proxy_address": "http://localhost:8080"}}

You can connect to this address using your local browser, and you'll see our minimalistic web application example running.

Press Ctrl-C in the terminal where you ran dapp-runner to initiate its shutdown.

Application descriptor

As mentioned above, the decentralized applications that are deployed on Golem by the dapp-runner are described in yaml files, conforming to the schema described in GAP-16.

Example descriptor

Here's an example application descriptor (http-proxy.yaml), that provisions a single instance of a simple, static website served with nginx:

payloads:
  nginx:
    runtime: "vm"
    params:
      image_hash: "16ad039c00f60a48c76d0644c96ccba63b13296d140477c736512127"
nodes:
  http:
    payload: "nginx"
    entrypoint:
        - ["/docker-entrypoint.sh"]
        - ["/bin/chmod", "a+x", "/"]
        - ["/bin/sh", "-c", 'echo "Hello from inside Golem!" > /usr/share/nginx/html/index.html']
        - ["/bin/rm", "/var/log/nginx/access.log", "/var/log/nginx/error.log"]
        - ["/usr/sbin/nginx"]
    http_proxy:
      ports:
        - "80"  # specify just the remote port, allow the local port to be automatically chosen

Web application

And here's an example of a slightly more complex application (webapp.yaml), that uses two kinds of services and explicitly connects them within a specified network:

payloads:
  db:
    runtime: "vm"
    params:
      image_hash: "85021afecf51687ecae8bdc21e10f3b11b82d2e3b169ba44e177340c"
  http:
    runtime: "vm"
    params:
      image_hash: "c37c1364f637c199fe710ca62241ff486db92c875b786814c6030aa1"
nodes:
  db:
    payload: "db"
    entrypoint:
      - ["/bin/run_rqlite.sh"]
    network: "default"
    ip:
      - "192.168.0.2"
  http:
    payload: "http"
    entrypoint:
      - ["/bin/bash", "-c", "cd /webapp && python app.py --db-address 192.168.0.2 --db-port 4001 initdb"]
      - ["/bin/bash", "-c", "cd /webapp && python app.py --db-address 192.168.0.2 --db-port 4001 run > /webapp/out 2> /webapp/err &"]
    http_proxy:
      ports:
        - "5000"  # specify just the remote port, allow the local port to be automatically chosen
    network: "default"
    ip:
      - "192.168.0.3"
    depends_on:
      - "db"
networks:
  default:
    ip: "192.168.0.0/24"

Implicit properties

The networks definition and the vpn capability

As can be seen in the http_proxy example above, the networks definition can be omitted.

Adding a http_proxy element to a nodes entry, causes the dapp-runner to implicitly add the networks object with a default of a single IPv4 network. Additionally, it adds the vpn capability to the requested parameters of the deployed vm runtime.

Note: The networks and capabilities objects will only be implicitly added if they are not already present in the descriptor. If the application specifies any of those objects, it is assumed that the application authors know what they're doing.

The manifest-support capability

Similarly, specifying the payload as vm/manifest implicitly adds manifest-support to the requested capabilities for the runtime.

Note: Again, this is only done if the payload.params doesn't already contain the capabilities object.

Usage

Currently, the dapp-runner implements a single CLI command, start:

Usage: dapp-runner start [OPTIONS] DESCRIPTORS...

which allows the following options:

  -d, --data PATH    Path to the data file.
  -l, --log PATH     Path to the log file.
  -s, --state PATH   Path to the state file.
  --stdout PATH      Redirect stdout to the specified file.
  --stderr PATH      Redirect stderr to the specified file.
  -c, --config PATH  Path to the file containing yagna-specific config.
                     [required]
  --silent
  --help             Show this message and exit.

The --data, --log, --state, --stdout, and --stderr arguments specify the locations of files to which the respective streams are written. If unspecified, all streams are written to the console which the dapp-runner is invoked from.

Streams

Data

The data stream consists of JSON-formatted output of specific components that are run as part of the services. Currently it carries the command execution events from exescript commands, e.g.:

{"db": {"0": [{"command": {"run": {"entry_point": "/bin/run_rqlite.sh", "args": [], "capture": {"stdout": {"stream": {}}, "stderr": {"stream": {}}}}}, "success": true, "stdout": null, "stderr": null}]}}

and the parameters of any started instances of Local HTTP proxies:

{"http": {"local_proxy_address": "http://localhost:8080"}}

The keys in the outermost dictionaries refer to names of service cluster as specified in the yaml descriptor file. For exescript commands, the secondary layer's keys refer to indices of instances within the specific cluster.

State

The state stream consists of JSON-formatted descriptions of the state of the dapp after each state change, e.g.:

{"db": {"0": "running"}, "http": {"0": "starting"}}

Here, again, the keys in the topmost dictionary refer to the names of service clusters defined in the yaml descriptor file and the secondary layer's keys refer to indices of specific instances.

Log

The log stream is a text stream of log messages emitted from dapp-runner.

Stdout / Stderr

Finally, stdout and stderr refer to the standard output streams of the dapp-runner script.

Config

This is a mandatory argument, specifying a path to a yaml file containing a description of a configuration to connect to your yagna daemon, e.g.:

yagna:
  app_key: "$YAGNA_APPKEY"
  subnet_tag: "devnet-beta"

payment:
  budget: 1.0  # GLM
  driver: "erc20"
  network: "rinkeby"

Descriptors

One or more application descriptors, as specified in the "Application descriptor" section above.

If more than one yaml descriptor file is given, all of the yaml files are merged into one descriptor before being processed further by the dapp-runner. The files are merged using a deep-merge strategy with contents of each subsequent yaml file overriding the colliding keys of the former ones.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dapp-runner-0.0.0a3.tar.gz (25.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dapp_runner-0.0.0a3-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file dapp-runner-0.0.0a3.tar.gz.

File metadata

  • Download URL: dapp-runner-0.0.0a3.tar.gz
  • Upload date:
  • Size: 25.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0 CPython/3.9.15 Linux/5.15.0-1023-azure

File hashes

Hashes for dapp-runner-0.0.0a3.tar.gz
Algorithm Hash digest
SHA256 4c8dba3975188253d2f952e72d2e034f1e5e6b5fd52e824a0bcc67e97d7a20f5
MD5 fb40d2684344475f220afe4281afaeb1
BLAKE2b-256 ca9b31f98d9c8824946069360f2336899214930bbd10b560f4d70f4181c4bbeb

See more details on using hashes here.

File details

Details for the file dapp_runner-0.0.0a3-py3-none-any.whl.

File metadata

  • Download URL: dapp_runner-0.0.0a3-py3-none-any.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0 CPython/3.9.15 Linux/5.15.0-1023-azure

File hashes

Hashes for dapp_runner-0.0.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 ce106a23c20c20976af5a5df57ef0a8f8379039afa20eabc15214d57fa68524f
MD5 b76f217eca6e9eaa8d766e0008bb4db9
BLAKE2b-256 52d67e86d2c1bf5f1ffb3039b22476e9f163afd1acf2b22645377bdf73774ebb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page