Packages

case class NodeDesc(nodeId: String, hostname: String, port: Int) extends Product with Serializable

Helper class containing node ID, hostname and port.

nodeId

In case of external cluster mode the node ID is ID of H2O Node, in the internal cluster mode the ID is ID of Spark Executor where corresponding instance is located

hostname

hostname of the node

port

port of the node

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NodeDesc
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NodeDesc(nodeId: String, hostname: String, port: Int)

    nodeId

    In case of external cluster mode the node ID is ID of H2O Node, in the internal cluster mode the ID is ID of Spark Executor where corresponding instance is located

    hostname

    hostname of the node

    port

    port of the node

Value Members

  1. val hostname: String
  2. def ipPort(): String
  3. val nodeId: String
  4. val port: Int
  5. def productPrefix: String
    Definition Classes
    NodeDesc → Product