Payout service is a part of the satellite in case of storj-sim, so it’s running. You may check parameters in the satellite’s config.yaml
file:
grep "payout" ~/.local/share/storj/local-network/satellite/**/config.yaml
for Windows PowerShell:
sls "payout" $env:AppData/Storj/local-network/satellite/**/config.yaml
or with the setup --help
command:
satellite setup --help | grep "payout"
for Windows PowerShell:
satellite setup --help | sls "payout"
Audit workers and repair workers are part of the satellite in case of storj-sim, so they running.
There is no concept of “how often”, they are checks pieces in the infinite loop across all segments, more segments - longer the whole cycle, to fill gaps you may increase concurrency (number of parallel workers).
You may check audit workers’ parameters in the satellite’s config.yaml
:
grep "worker" ~/.local/share/storj/local-network/satellite/**/config.yaml
for Windows PowerShell:
sls "worker" $env:AppData\Storj\local-network\satellite\**\config.yaml
or with the setup --help
command:
satellite setup --help | grep worker
for Windows PowerShell:
satellite setup --help | sls worker
The same deal with the repair workers - they are running in the infinity loop too.
Parameters of the repair workers you may check in the satellite’s config.yaml
file:
grep "repair" ~/.local/share/storj/local-network/satellite/**/config.yaml
for Windows PowerShell:
sls "repair" $env:AppData/Storj/local-network/satellite/**/config.yaml
or with the setup --help
command:
satellite setup --help | grep "repair"
for Windows PowerShell:
satellite setup --help | grep "repair"