MyNixOS website logo
option

services.dawarich.sidekiqProcesses

How many Sidekiq processes should be used to handle background jobs, and which job classes they handle. Can be used to speed up the import process.

Declarations
Type
attribute set of (submodule)
Default
{
  all = {
    jobClasses = [ ];
    threads = null;
  };
}
Example
{
  all = {
    jobClasses = [ ];
    threads = null;
  };
  geocoding = {
    jobClasses = [
      "reverse_geocoding"
    ];
    threads = 10;
  };
}