Mokhtar Naamani f4cb727dec bump types and metadata npm package version 2 лет назад
..
bin cde3623cf0 Distributor node - initial commit 3 лет назад
config d3e0d343b5 distributor-node: converge on single config file 2 лет назад
docs 8cd0d2d850 Merge branch 'giza_feature_NewContentFeaturesAndNFT' into olympia 2 лет назад
scripts 8cd0d2d850 Merge branch 'giza_feature_NewContentFeaturesAndNFT' into olympia 2 лет назад
src 7a37a1080a chain metadata and graphql schema updates for cli/tests/argus/colossus 2 лет назад
.eslintignore d42f98bc02 Address https://github.com/Joystream/joystream/pull/2582 review comments 2 лет назад
.eslintrc.js 1b6ac27d41 Improve error handling (mostly query-node-related) 3 лет назад
.gitignore dc38b96d3d Request queue, improved downloads & storage node proxying, error handling, bug fixes 3 лет назад
.prettierignore 623562fb08 Prettier - include autogenerated files 2 лет назад
README.md 968ab458ae Update docs 2 лет назад
config.yml ac2a1ec5e8 Query node: Undeterministic ids fix 2 лет назад
docker-compose.yml cde3623cf0 Distributor node - initial commit 3 лет назад
openapitools.json cde3623cf0 Distributor node - initial commit 3 лет назад
package.json f4cb727dec bump types and metadata npm package version 2 лет назад
tsconfig.json d42f98bc02 Address https://github.com/Joystream/joystream/pull/2582 review comments 2 лет назад

README.md

Joystream Distributor CLI

The Joystream Distributor CLI package contains a set of commands that allow:

  • running the actual distributor node,
  • performing the node operator on-chain duties (like setting the node metadata)
  • performing the distribution working group leader on-chain duties (like setting the distribution system limits, assigning distribution bags and buckets)

To see the list of all available commands and their flags / arguments, check out the commands documentation.

Configuration

Config file

All the configuration values required by Joystream Distributor CLI are provided via a single configuration file (either yml or json).

The path to the configuration will be (ordered from highest to lowest priority):

  • The value of --configPath flag provided when running a command, or
  • The value of CONFIG_PATH environment variable, or
  • config.yml in the current working directory by default

ENV variables

All configuration values can be overriden using environment variables, which may be useful when running the distributor node as docker service.

To determine environment variable name based on a config key, for example intervals.cacheCleanup, use the following formula:

  • convert pascalCase fieldnames to SCREAMING_SNAKE_CASE: intervals.cacheCleanup => INTERVALS.CACHE_CLEANUP
  • replace all dots with __: INTERVALS.CACHE_CLEANUP => INTERVALS__CACHE_CLEANUP
  • add JOYSTREAM_DISTRIBUTOR__ prefix: INTERVALS__CACHE_CLEANUP => JOYSTREAM_DISTRIBUTOR__INTERVALS__CACHE_CLEANUP

In case of arrays or oneOf objects (ie. keys), the values must be provided as json string, for example JOYSTREAM_DISTRIBUTOR__KEYS="[{\"suri\":\"//Bob\"}]".

In order to unset a value you can use one of the following strings as env variable value: "off" "null", "undefined", for example: JOYSTREAM_DISTRIBUTOR__LOGS__FILE="off".

For more envirnoment variable examples see the distributor-node service configuration in docker-compose.yml.

For detailed configuration reference, checkout the config schema documentation.

Distributor Node

To understand how the distributor node works in detail, checkout the node documentation.