2017-03-27 01:06:23 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.services.clickhouse;
|
|
|
|
in
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.clickhouse = {
|
|
|
|
|
2020-04-20 18:05:26 +00:00
|
|
|
enable = mkEnableOption "ClickHouse database server";
|
2017-03-27 01:06:23 +00:00
|
|
|
|
2023-11-27 00:19:27 +00:00
|
|
|
package = mkPackageOption pkgs "clickhouse" { };
|
2021-09-09 11:44:25 +00:00
|
|
|
|
2017-03-27 01:06:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.users.clickhouse = {
|
2017-03-27 01:06:23 +00:00
|
|
|
name = "clickhouse";
|
|
|
|
uid = config.ids.uids.clickhouse;
|
|
|
|
group = "clickhouse";
|
|
|
|
description = "ClickHouse server user";
|
|
|
|
};
|
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.groups.clickhouse.gid = config.ids.gids.clickhouse;
|
2017-03-27 01:06:23 +00:00
|
|
|
|
|
|
|
systemd.services.clickhouse = {
|
|
|
|
description = "ClickHouse server";
|
|
|
|
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
after = [ "network.target" ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
2023-05-18 22:24:20 +00:00
|
|
|
Type = "notify";
|
2017-03-27 01:06:23 +00:00
|
|
|
User = "clickhouse";
|
|
|
|
Group = "clickhouse";
|
2019-02-23 21:53:57 +00:00
|
|
|
ConfigurationDirectory = "clickhouse-server";
|
2021-05-18 10:04:37 +00:00
|
|
|
AmbientCapabilities = "CAP_SYS_NICE";
|
2019-02-23 21:53:57 +00:00
|
|
|
StateDirectory = "clickhouse";
|
|
|
|
LogsDirectory = "clickhouse";
|
2022-08-14 13:50:22 +00:00
|
|
|
ExecStart = "${cfg.package}/bin/clickhouse-server --config-file=/etc/clickhouse-server/config.xml";
|
2023-05-18 22:24:20 +00:00
|
|
|
TimeoutStartSec = "infinity";
|
|
|
|
};
|
|
|
|
|
|
|
|
environment = {
|
|
|
|
# Switching off watchdog is very important for sd_notify to work correctly.
|
|
|
|
CLICKHOUSE_WATCHDOG_ENABLE = "0";
|
2017-03-27 01:06:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc = {
|
|
|
|
"clickhouse-server/config.xml" = {
|
2021-09-09 11:44:25 +00:00
|
|
|
source = "${cfg.package}/etc/clickhouse-server/config.xml";
|
2017-03-27 01:06:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
"clickhouse-server/users.xml" = {
|
2021-09-09 11:44:25 +00:00
|
|
|
source = "${cfg.package}/etc/clickhouse-server/users.xml";
|
2017-03-27 01:06:23 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-09 11:44:25 +00:00
|
|
|
environment.systemPackages = [ cfg.package ];
|
2018-12-19 14:06:53 +00:00
|
|
|
|
|
|
|
# startup requires a `/etc/localtime` which only if exists if `time.timeZone != null`
|
|
|
|
time.timeZone = mkDefault "UTC";
|
|
|
|
|
2017-03-27 01:06:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|