Module Values.HdfsNameNodeSource

The NameNode of the Hadoop Distributed File System (HDFS). The NameNode manages the file system's namespace. The NameNode performs operations such as opening, closing, and renaming files and directories. The NameNode contains the information to map blocks of data to the DataNodes.

Sourcetype nonrec t = {
  1. hostname : HdfsServerHostname.t;
    (*

    The hostname of the NameNode in the HDFS cluster. This value is the IP address or Domain Name Service (DNS) name of the NameNode. An agent that's installed on-premises uses this hostname to communicate with the NameNode in the network.

    *)
  2. port : HdfsServerPort.t;
    (*

    The port that the NameNode uses to listen to client requests.

    *)
}
Sourceval context_ : string
Sourceval make : hostname:HdfsServerHostname.t -> port:HdfsServerPort.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of HdfsServerPort.t | `String of HdfsServerHostname.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t