mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
|
{ config, lib, pkgs, ...}:
|
||
|
let
|
||
|
cfg = config.services.hadoop;
|
||
|
hadoopConf = import ./conf.nix { hadoop = cfg; pkgs = pkgs; };
|
||
|
in
|
||
|
with lib;
|
||
|
{
|
||
|
imports = [ ./yarn.nix ./hdfs.nix ];
|
||
|
|
||
|
options.services.hadoop = {
|
||
|
coreSite = mkOption {
|
||
|
default = {};
|
||
|
example = {
|
||
|
"fs.defaultFS" = "hdfs://localhost";
|
||
|
};
|
||
|
description = "Hadoop core-site.xml definition";
|
||
|
};
|
||
|
|
||
|
hdfsSite = mkOption {
|
||
|
default = {};
|
||
|
example = {
|
||
|
"dfs.nameservices" = "namenode1";
|
||
|
};
|
||
|
description = "Hadoop hdfs-site.xml definition";
|
||
|
};
|
||
|
|
||
|
mapredSite = mkOption {
|
||
|
default = {};
|
||
|
example = {
|
||
|
"mapreduce.map.cpu.vcores" = "1";
|
||
|
};
|
||
|
description = "Hadoop mapred-site.xml definition";
|
||
|
};
|
||
|
|
||
|
yarnSite = mkOption {
|
||
|
default = {};
|
||
|
example = {
|
||
|
"yarn.resourcemanager.ha.id" = "resourcemanager1";
|
||
|
};
|
||
|
description = "Hadoop yarn-site.xml definition";
|
||
|
};
|
||
|
|
||
|
package = mkOption {
|
||
|
type = types.package;
|
||
|
default = pkgs.hadoop;
|
||
|
defaultText = "pkgs.hadoop";
|
||
|
example = literalExample "pkgs.hadoop";
|
||
|
description = ''
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
config = mkMerge [
|
||
|
(mkIf (builtins.hasAttr "yarn" config.users.extraUsers ||
|
||
|
builtins.hasAttr "hdfs" config.users.extraUsers ) {
|
||
|
users.extraGroups.hadoop = {
|
||
|
gid = config.ids.gids.hadoop;
|
||
|
};
|
||
|
})
|
||
|
|
||
|
];
|
||
|
}
|