PRBv2 Deployment Guide - Archived
Last updated
Was this helpful?
Last updated
Was this helpful?
Following services make a Runtime Bridge setup work:
Data Provider (a.k.a data_provider
):
Fetches and analyses block data from Substrate,
Makes pre-encoded blobs that pRuntime
consumes,
Serves pre-encoded blobs for lifecycle managers;
Lifecycle Manager (a.k.a lifecycle
):
Sends block data blobs to workers(pRuntime
),
Registers worker on the chain,
Starts mining with configured stake amount,
Provides API to query workers and pools.
Trader (a.k.a trade
):
Sends transactions from queue to the chain.
Every service above uses as a communication method built on libp2p
and Protocol Buffer. On the first startup of each service, an RSA key pair will be generated(by default saved in /var/data/keys/id
) to be used as the identity in the libp2p
protocol. The current identity public key can be found in the stdout of running service by searching Got my peer id
in the base58 format. And for lifecycle managers, the key pair is used to encrypt critical information. DO BACK THE KEYS UP AND KEEP THE KEYS SAFE.
When the lifecycle manager has finished the initial blob synchronization, it will attempt to sync messages in the message queue between the pRuntime
and the blockchain. After that, it will try to register workers and do the βstart miningβ operation on the blockchain.
Extrinsics (transactions) shall be sent to the blockchain for the operation mentioned above. To achieve this, the lifecycle manager shall push the extrinsics data to the trader queue(currently maintained with Redis). The trader will grab jobs from the queue and report the extrinsic results back.
Runtime Bridge doesnβt require a SGX environment.
Data providers and lifecycle managers are designed to discover each other using libp2p
. While starting the service, it connects to the blockchain then analyses the chainIdentity
from the parachain
, libp2p
will be initialized with the identity key and the chainIdentity
. After the initialization, the service should begin its work and discover other peers via mDNS as well as the bootstrap node configured.
A data provider fetches data from the parachain
and the relaychain
(called parent chain
in Substrate). It starts a standalone TCP server for blob synching due to the performance issue of libp2p
, the port of which will be included in the peer handshake process.
While starting the lifecycle manager, it connects to the Redis server for the trade queue. There should be only 1 lifecycle manager and 1 trader accessing the same Redis server. The trader paired with the lifecycle manager should use the same identity key to ensure that the trader can decrypt the private key of saved pools. While the lifecycle requires a specified Redis server to start, it doesnβt require any data provider to start the service. It will wait until any valid data providers are discovered, which means itβs safe to stop the data provider when the lifecycle manager running, and you can build an HA setup for data providers.
Data in the Redis server should never be persisted since the lifecycle manager always builds states from the blockchain and pRuntime
. Restart the lifecycle manager, the trader, and the Redis server together when any error occurs.
We recommend deploying the services with Docker Compose, to install Docker and Docker Compose, please refer to the documentation:
The host
network driver is recommended when deploying with Docker to work with the auto discovery feature of Runtime Bridge.
Edit and save following content in docker-compose.yml
in a directory for node deployment:
Itβs recommended to build a TCP load balancer for the node in production environment.
Edit and save following content in docker-compose.yml
in another directory:
Run docker-compose up
to start the data provider, open the monitor with http://localhost:3000
in the browser, you will see the status of the data provider even the PTP_BOOT_NODES
has not been set properly.
One data provider can be shared by multiple lifecycle managers.
Edit and save following content in docker-compose.yml
:
Run docker-compose up
to start the data provider, the lifecycle manager should be discovered and accessible in the monitor.
Open http://127.0.0.1:4567
in the browser to check the queue of on-chain transactions.
Services with a Runtime Bridges setup are configured with environment variables.
NODE_ENV
Application environment, set to development to put the app in development mode.
PHALA_MODULE
The module to start.
PHALA_LOGGER_LEVEL
Logger level, defaults to info. See https://github.com/trentm/node-bunyan for more information.
PHALA_CHAIN_ENDPOINT
The WebSocket endpoint to the Substrate RPC of parachain.
PHALA_PARENT_CHAIN_ENDPOINT
The WebSocket endpoint to the Substrate RPC of relaychain(e.g. for Khala itβs Kusama).
PHALA_PEER_ID_PREFIX
The path storing identity keys, defaults to β/var/data/keys/idβ.
PHALA_WALKIE_LISTEN_ADDRESSES
The multiaddr(https://github.com/libp2p/specs/tree/master/addressing) of listen address for libp2p, defaults to β/ip4/0.0.0.0/tcp/0,/ip6/::/tcp/0β which means listen to a random port on every interface. Only TCP protocol is supported. Use a comma between addresses.
PHALA_WALKIE_BOOT_NODES
The multiaddr list of bootstrap nodes for peer discovery, defaults to β/ip4/0.0.0.0/tcp/18888,/ip6/::/tcp/28889β which means no bootstrap node. Only TCP protocol is supported. Use a comma between addresses.
PHALA_BRIDGE_IDENTITY
The bridge identity in the PRB Walkie protocol, used to specify namespace.
PHALA_LOCAL_DB_PATH
The path to database, defaults to β/var/data/0β.
PHALA_DATA_PROVIDER_LOCAL_SERVER_PORT
The listen port for the blob server, defaults to 8012.
PHALA_Q_REDIS_ENDPOINT
The endpoint to the Redis for trader task queue.
PHALA_RUNNER_MAX_WORKER_NUMBER
The maximum worker number of one runner, defaults to 150.
PHALA_LIFECYCLE_CONFIG_MODE
Whether the lifecycle manager should enter config mode, where it will start only the API to add/modify saved pools/workers. Set to true to enable.
PHALA_LRU_CACHE_SIZE
The size of LRU cache, defaults to 5000.
PHALA_LRU_CACHE_MAX_AGE
The maximum age of items in the LRU cache in milliseconds, defaults to 30 minutes.
PHALA_ENFORCE_MIN_BENCH_SCORE
Whether the lifecycle manager should re-try the worker registration on the chain if the on-chain benchmark score to too low. Set to true to enable.
PHALA_MIN_BENCH_SCORE
Desired minimum benchmark score.
PHALA_Q_REDIS_ENDPOINT
The endpoint to the Redis for task queue.
Only do this when you are suffering from OOM issues.
Change the docker entrypoint to node -trace-warnings -experimental-json-modules -es-module-specifier-resolution=node -harmony-top-level-await -max-old-space-size=$MAX_OLD_SPACE_SIZE dist/index
. Change the $MAX_OLD_SPACE_SIZE
to your desired size in MB.
It also implements a JSON proxy to the Walkie API.
POST /ptp/discover
returns the list of discovered peers.
POST /ptp/proxy/:peer_id/:method
sends the API request to the specified peer.
With monitor:
With monitor:
Restart the lifecycle manager after modified pools/workers.
We assume you have already of Docker and Docker Compose to complete this guide.
The is an example of the Walkie usage. It provides a simple management ability to play with Runtime Bridge.
The API definition can be found in .
To import pools:
To import workers: