Packages

case class StreamInputInfo(inputStreamId: Int, numRecords: Long, metadata: Map[String, Any] = Map.empty) extends Product with Serializable

Developer API

Track the information of input stream at specified batch time.

inputStreamId

the input stream id

numRecords

the number of records in a batch

metadata

metadata for this batch. It should contain at least one standard field named "Description" which maps to the content that will be shown in the UI.

Annotations
@DeveloperApi()
Source
InputInfoTracker.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamInputInfo
  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 StreamInputInfo(inputStreamId: Int, numRecords: Long, metadata: Map[String, Any] = Map.empty)

    inputStreamId

    the input stream id

    numRecords

    the number of records in a batch

    metadata

    metadata for this batch. It should contain at least one standard field named "Description" which maps to the content that will be shown in the UI.

Value Members

  1. val inputStreamId: Int
  2. val metadata: Map[String, Any]
  3. def metadataDescription: Option[String]
  4. val numRecords: Long