2020-01-19 17:55:56 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let cfg = config.services.victoriametrics; in
|
|
|
|
{
|
|
|
|
options.services.victoriametrics = with lib; {
|
2022-08-28 20:18:44 +01:00
|
|
|
enable = mkEnableOption (lib.mdDoc "victoriametrics");
|
2020-01-19 17:55:56 +00:00
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.victoriametrics;
|
2021-10-03 17:06:03 +01:00
|
|
|
defaultText = literalExpression "pkgs.victoriametrics";
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2020-01-19 17:55:56 +00:00
|
|
|
The VictoriaMetrics distribution to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
listenAddress = mkOption {
|
|
|
|
default = ":8428";
|
|
|
|
type = types.str;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2020-01-19 17:55:56 +00:00
|
|
|
The listen address for the http interface.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
retentionPeriod = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 1;
|
2022-07-28 22:19:15 +01:00
|
|
|
description = lib.mdDoc ''
|
2020-01-19 17:55:56 +00:00
|
|
|
Retention period in months.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
2022-08-03 21:46:41 +01:00
|
|
|
description = lib.mdDoc ''
|
2022-08-03 02:05:47 +01:00
|
|
|
Extra options to pass to VictoriaMetrics. See the README:
|
2022-08-03 21:46:41 +01:00
|
|
|
<https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/README.md>
|
|
|
|
or {command}`victoriametrics -help` for more
|
2020-01-19 17:55:56 +00:00
|
|
|
information.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
systemd.services.victoriametrics = {
|
|
|
|
description = "VictoriaMetrics time series database";
|
|
|
|
after = [ "network.target" ];
|
2020-09-09 08:31:27 +01:00
|
|
|
startLimitBurst = 5;
|
2020-01-19 17:55:56 +00:00
|
|
|
serviceConfig = {
|
|
|
|
Restart = "on-failure";
|
|
|
|
RestartSec = 1;
|
|
|
|
StateDirectory = "victoriametrics";
|
|
|
|
DynamicUser = true;
|
|
|
|
ExecStart = ''
|
|
|
|
${cfg.package}/bin/victoria-metrics \
|
|
|
|
-storageDataPath=/var/lib/victoriametrics \
|
2020-09-11 11:44:33 +01:00
|
|
|
-httpListenAddr ${cfg.listenAddress} \
|
|
|
|
-retentionPeriod ${toString cfg.retentionPeriod} \
|
2020-01-19 17:55:56 +00:00
|
|
|
${lib.escapeShellArgs cfg.extraOptions}
|
|
|
|
'';
|
nixos/victoriametrics: set LimitNOFILE=1048576 to fix panic and restart loop
This fixes:
```
systemd[1]: Started VictoriaMetrics time series database.
victoria-metrics[379550]: 2021-08-04T19:33:39.833Z panic VictoriaMetrics/lib/storage/partition.go:954 FATAL: unrecoverable error when merging small parts in the partition "/var/lib/victoriametrics/data/small/2021_08": cannot open source part for merging: cannot open metaindex file in stream mode: cannot open file "/var/lib/victoriametrics/data/small/2021_08/1228_1228_20210804184120.712_20210804184121.899_16982E83CD7A763A/metaindex.bin": open /var/lib/victoriametrics/data/small/2021_08/1228_1228_20210804184120.712_20210804184121.899_16982E83CD7A763A/metaindex.bin: too many open files
victoria-metrics[379550]: panic: FATAL: unrecoverable error when merging small parts in the partition "/var/lib/victoriametrics/data/small/2021_08": cannot open source part for merging: cannot open metaindex file in stream mode: cannot open file "/var/lib/victoriametrics/data/small/2021_08/1228_1228_20210804184120.712_20210804184121.899_16982E83CD7A763A/metaindex.bin": open /var/lib/victoriametrics/data/small/2021_08/1228_1228_20210804184120.712_20210804184121.899_16982E83CD7A763A/metaindex.bin: too many open files
victoria-metrics[379550]: goroutine 629 [running]:
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger.logMessage(0xbb3ea1, 0x5, 0xc001113800, 0x1e7, 0x4)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger/logger.go:270 +0xc69
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger.logLevelSkipframes(0x1, 0xbb3ea1, 0x5, 0xbe3f8b, 0x4b, 0xc000bb3f88, 0x2, 0x2)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger/logger.go:138 +0xd1
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger.logLevel(...)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger/logger.go:130
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger.Panicf(...)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/logger/logger.go:126
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/storage.(*partition).smallPartsMerger(0xc0014d7980)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/storage/partition.go:954 +0x145
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/storage.(*partition).startMergeWorkers.func1(0xc0014d7980)
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/storage/partition.go:933 +0x2b
victoria-metrics[379550]: created by github.com/VictoriaMetrics/VictoriaMetrics/lib/storage.(*partition).startMergeWorkers
victoria-metrics[379550]: github.com/VictoriaMetrics/VictoriaMetrics/lib/storage/partition.go:932 +0x6c
systemd[1]: victoriametrics.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
systemd[1]: victoriametrics.service: Failed with result 'exit-code'.
systemd[1]: victoriametrics.service: Consumed 587ms CPU time, received 6.5K IP traffic, sent 1.7K IP traffic.
systemd[1]: victoriametrics.service: Scheduled restart job, restart counter is at 2064.
systemd[1]: Stopped VictoriaMetrics time series database.
systemd[1]: victoriametrics.service: Consumed 587ms CPU time, received 6.5K IP traffic, sent 1.7K IP traffic.
systemd[1]: Starting VictoriaMetrics time series database...
```
2021-08-05 06:07:25 +01:00
|
|
|
# victoriametrics 1.59 with ~7GB of data seems to eventually panic when merging files and then
|
|
|
|
# begins restart-looping forever. Set LimitNOFILE= to a large number to work around this issue.
|
|
|
|
#
|
|
|
|
# panic: FATAL: unrecoverable error when merging small parts in the partition "/var/lib/victoriametrics/data/small/2021_08":
|
|
|
|
# cannot open source part for merging: cannot open values file in stream mode:
|
|
|
|
# cannot open file "/var/lib/victoriametrics/data/small/2021_08/[...]/values.bin":
|
|
|
|
# open /var/lib/victoriametrics/data/small/2021_08/[...]/values.bin: too many open files
|
|
|
|
LimitNOFILE = 1048576;
|
2020-01-19 17:55:56 +00:00
|
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
postStart =
|
|
|
|
let
|
|
|
|
bindAddr = (lib.optionalString (lib.hasPrefix ":" cfg.listenAddress) "127.0.0.1") + cfg.listenAddress;
|
|
|
|
in
|
|
|
|
lib.mkBefore ''
|
|
|
|
until ${lib.getBin pkgs.curl}/bin/curl -s -o /dev/null http://${bindAddr}/ping; do
|
|
|
|
sleep 1;
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|