Config.json
The config.json is the primary configuration file that holds all required settings in order to run an Exivity instance or node successfully.
The config.jsonis divided into several sections related to the individual Exivity software components (i.e. database, mq, etc) and is typically created and modified by the installer. However, in some situations such as multi-node setups, it is required to change this configuration file in order to support different workloads on different nodes. Also, when migrating to a different PostgreSQL database or RabbitMQ cluster, it would be required to change the database or mq related settings in the config.jsonconfiguration file.
db
The db section contains the settings for the PostgreSQL database engine where the Exivity database is hosted:
"db": {
"driver": "postgres",
"parameters": {
"host": "localhost",
"port": "5432",
"sslmode": "disable",
"dbname": "exdb",
"user": "postgres",
"password": "secretpassword",
"connect_timeout": "10",
"target_session_attrs": "read-write"
}
}mq
The mq section contains the settings for the RabbitMQ message engine:
griffon
The griffonsection contains settings for the Exivity Job Manager:
chronos
The chronos section stores information related to the Exivity Scheduling Service:
merlin
The merlin section contains all parameters related to backend components:
Last updated