module Mapred_config:Configuration of mapred serverssig
..end
class type mapred_config =object
..end
val extract_config : Netplex_types.config_file -> mapred_config
netplex {
...
namenodes {
clustername = "cluster1";
node { addr = "hostname:port" };
node { addr = "hostname:port" };
...
};
file {
root = "/";
};
mapred {
node { addr = "hostname" };
node { addr = "hostname" };
...
port = 1234;
tmpdir = "/somewhere";
users = "john hans sue";
}
}
If PlasmaFS is disabled, the namenodes
section must look like:
namenodes {
disabled = true;
}
val test_config : clustername:string ->
nodes:string list ->
?buffer_size:int -> ?sort_size:int -> unit -> mapred_config
val executable_version : unit -> string