mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
150 lines
3.7 KiB
Nix
150 lines
3.7 KiB
Nix
{
|
|
config,
|
|
options,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
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 = [
|
|
(lib.mkRenamedOptionModule [ "services" "hbase" ] [ "services" "hbase-standalone" ])
|
|
];
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
services.hbase-standalone = {
|
|
|
|
enable = lib.mkEnableOption ''
|
|
HBase master in standalone mode with embedded regionserver and zookeper.
|
|
Do not use this configuration for production nor for evaluating HBase performance
|
|
'';
|
|
|
|
package = lib.mkPackageOption pkgs "hbase" { };
|
|
|
|
user = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "hbase";
|
|
description = ''
|
|
User account under which HBase runs.
|
|
'';
|
|
};
|
|
|
|
group = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "hbase";
|
|
description = ''
|
|
Group account under which HBase runs.
|
|
'';
|
|
};
|
|
|
|
dataDir = lib.mkOption {
|
|
type = lib.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 = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/var/log/hbase";
|
|
description = ''
|
|
Specifies the location of HBase log files.
|
|
'';
|
|
};
|
|
|
|
settings = lib.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 = lib.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 = lib.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;
|
|
|
|
};
|
|
}
|