vps: reduce immich worker concurrency

This commit is contained in:
Fabian Montero 2025-01-24 11:59:23 -06:00
parent 3fefd5b072
commit 09a74648a1
Signed by: fabian
GPG key ID: 1FFAC35E1798174F

View file

@ -28,6 +28,46 @@ with lib; {
environment = { environment = {
IMMICH_TELEMETRY_EXCLUDE = "host,api,io,repo,job"; IMMICH_TELEMETRY_EXCLUDE = "host,api,io,repo,job";
}; };
settings = {
machineLearning = {
enabled = false;
};
job = {
backgroundTask = {
concurrency = 1;
};
smartSearch = {
concurrency = 1;
};
metadataExtraction = {
concurrency = 1;
};
faceDetection = {
concurrency = 1;
};
search = {
concurrency = 1;
};
sidecar = {
concurrency = 1;
};
library = {
concurrency = 1;
};
migration = {
concurrency = 1;
};
thumbnailGeneration = {
concurrency = 1;
};
videoConversion = {
concurrency = 1;
};
notifications = {
concurrency = 1;
};
};
};
}; };
}; };
} }