summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/hadoop/containerExecutor.nix
blob: 7d5d2918e9b9fc1bb4781150b5c7c7c1522a093d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ version, stdenv, fetchurl, lib, cmake, openssl, platformAttrs, ... }:

stdenv.mkDerivation (finalAttrs: {
  pname = "hadoop-yarn-containerexecutor";
  inherit version;

  src = fetchurl {
    url = "mirror://apache/hadoop/common/hadoop-${finalAttrs.version}/hadoop-${finalAttrs.version}-src.tar.gz";
    hash = platformAttrs.${stdenv.system}.srcHash;
  };
  sourceRoot = "hadoop-${finalAttrs.version}-src/hadoop-yarn-project/hadoop-yarn/"
               +"hadoop-yarn-server/hadoop-yarn-server-nodemanager/src";

  nativeBuildInputs = [ cmake ];
  buildInputs = [ openssl ];
  cmakeFlags = [ "-DHADOOP_CONF_DIR=/run/wrappers/yarn-nodemanager/etc/hadoop" ];

  installPhase = ''
    mkdir $out
    mv target/var/empty/local/bin $out/
  '';

  meta = with lib; {
    homepage = "https://hadoop.apache.org/";
    description = "Framework for distributed processing of large data sets across clusters of computers";
    license = licenses.asl20;

    longDescription = ''
        The Hadoop YARN Container Executor is a native component responsible for managing the lifecycle of containers
        on individual nodes in a Hadoop YARN cluster. It launches, monitors, and terminates containers, ensuring that
        resources like CPU and memory are allocated according to the policies defined in the ResourceManager.
    '';

    maintainers = with maintainers; [ illustris ];
    platforms = filter (strings.hasSuffix "linux") (attrNames platformAttrs);
  };
})