Enabling multiple daemon workers for high-volume data
Tip
These instructions apply to single-host Unravel deployments only; for multi-host deployments, please contact Unravel Support.
Note
Run the <Unravel/installation/directory>/manager config worker --help to view the commands menu for scaling up daemons for high-volume data.
You can increase the workers for the following daemons only:
event_worker
metrics_analyzer
spark_worker
unravel_sensor
yarn_jc_worker
Stop Unravel.
<Unravel/installation/directory>
/manager stopCheck the list of workers that are already customized.
<Unravel/installation/directory>
/manager config worker showSet the number of processes for a service type.
<Unravel/installation/directory>
/manager config worker countSERVICE_TYPE
NUMBER
In the following example, you add more event workers by setting 4 processes that are event_worker_1 to event_worker_4:
<Unravel/installation/directory>
/manager config worker count event_worker 4Apply the changes.
<Unravel/installation/directory>
/manager config applyStart Unravel.
<Unravel/installation/directory>
/manager start
Note
There is a bug that can prevent you from setting the number of workers for metrics_analyzer daemon. Only in such a case, stop Unravel and manually increase the number of workers from <Unravel installation directory>/unravel/data/conf/unravel.yaml
file. In the following example, the unravel.yaml
is edited to increase the number of workers for the metrics_analyzer daemon to the count of 4.
services: metrics_analyzer: instance_count: 4
Ensure to apply the changes and restart Unravel.
<Unravel/installation/directory>
/manager config apply<Unravel/installation/directory>
/manager start