6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
140 lines
3.6 KiB
Nix
140 lines
3.6 KiB
Nix
{ config, options, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.hbase-standalone;
|
|
opt = options.services.hbase-standalone;
|
|
|
|
buildProperty = configAttr:
|
|
(builtins.concatStringsSep "\n"
|
|
(lib.mapAttrsToList
|
|
(name: value: ''
|
|
<property>
|
|
<name>${name}</name>
|
|
<value>${builtins.toString value}</value>
|
|
</property>
|
|
'')
|
|
configAttr));
|
|
|
|
configFile = pkgs.writeText "hbase-site.xml"
|
|
''<configuration>
|
|
${buildProperty (opt.settings.default // cfg.settings)}
|
|
</configuration>
|
|
'';
|
|
|
|
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
|
|
mkdir -p $out
|
|
cp ${cfg.package}/conf/* $out/
|
|
rm $out/hbase-site.xml
|
|
ln -s ${configFile} $out/hbase-site.xml
|
|
'' ;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
(mkRenamedOptionModule [ "services" "hbase" ] [ "services" "hbase-standalone" ])
|
|
];
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
services.hbase-standalone = {
|
|
|
|
enable = mkEnableOption ''
|
|
HBase master in standalone mode with embedded regionserver and zookeper.
|
|
Do not use this configuration for production nor for evaluating HBase performance
|
|
'';
|
|
|
|
package = mkPackageOption pkgs "hbase" { };
|
|
|
|
user = mkOption {
|
|
type = types.str;
|
|
default = "hbase";
|
|
description = ''
|
|
User account under which HBase runs.
|
|
'';
|
|
};
|
|
|
|
group = mkOption {
|
|
type = types.str;
|
|
default = "hbase";
|
|
description = ''
|
|
Group account under which HBase runs.
|
|
'';
|
|
};
|
|
|
|
dataDir = mkOption {
|
|
type = types.path;
|
|
default = "/var/lib/hbase";
|
|
description = ''
|
|
Specifies location of HBase database files. This location should be
|
|
writable and readable for the user the HBase service runs as
|
|
(hbase by default).
|
|
'';
|
|
};
|
|
|
|
logDir = mkOption {
|
|
type = types.path;
|
|
default = "/var/log/hbase";
|
|
description = ''
|
|
Specifies the location of HBase log files.
|
|
'';
|
|
};
|
|
|
|
settings = mkOption {
|
|
type = with lib.types; attrsOf (oneOf [ str int bool ]);
|
|
default = {
|
|
"hbase.rootdir" = "file://${cfg.dataDir}/hbase";
|
|
"hbase.zookeeper.property.dataDir" = "${cfg.dataDir}/zookeeper";
|
|
};
|
|
defaultText = literalExpression ''
|
|
{
|
|
"hbase.rootdir" = "file://''${config.${opt.dataDir}}/hbase";
|
|
"hbase.zookeeper.property.dataDir" = "''${config.${opt.dataDir}}/zookeeper";
|
|
}
|
|
'';
|
|
description = ''
|
|
configurations in hbase-site.xml, see <https://github.com/apache/hbase/blob/master/hbase-server/src/test/resources/hbase-site.xml> for details.
|
|
'';
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.tmpfiles.rules = [
|
|
"d '${cfg.dataDir}' - ${cfg.user} ${cfg.group} - -"
|
|
"d '${cfg.logDir}' - ${cfg.user} ${cfg.group} - -"
|
|
];
|
|
|
|
systemd.services.hbase = {
|
|
description = "HBase Server";
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
environment = {
|
|
# JRE 15 removed option `UseConcMarkSweepGC` which is needed.
|
|
JAVA_HOME = "${pkgs.jre8}";
|
|
HBASE_LOG_DIR = cfg.logDir;
|
|
};
|
|
|
|
serviceConfig = {
|
|
User = cfg.user;
|
|
Group = cfg.group;
|
|
ExecStart = "${cfg.package}/bin/hbase --config ${configDir} master start";
|
|
};
|
|
};
|
|
|
|
users.users.hbase = {
|
|
description = "HBase Server user";
|
|
group = "hbase";
|
|
uid = config.ids.uids.hbase;
|
|
};
|
|
|
|
users.groups.hbase.gid = config.ids.gids.hbase;
|
|
|
|
};
|
|
}
|