case class OutputOperationInfo(batchTime: Time, id: Int, name: String, description: String, startTime: Option[Long], endTime: Option[Long], failureReason: Option[String]) extends Product with Serializable
Class having information on output operations.
- batchTime
Time of the batch
- id
Id of this output operation. Different output operations have different ids in a batch.
- name
The name of this output operation.
- description
The description of this output operation.
- startTime
Clock time of when the output operation started processing
- endTime
Clock time of when the output operation started processing
- failureReason
Failure reason if this output operation fails
- Annotations
- @DeveloperApi()
- Source
- OutputOperationInfo.scala
- Alphabetic
- By Inheritance
- OutputOperationInfo
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new OutputOperationInfo(batchTime: Time, id: Int, name: String, description: String, startTime: Option[Long], endTime: Option[Long], failureReason: Option[String])
- batchTime
Time of the batch
- id
Id of this output operation. Different output operations have different ids in a batch.
- name
The name of this output operation.
- description
The description of this output operation.
- startTime
Clock time of when the output operation started processing
- endTime
Clock time of when the output operation started processing
- failureReason
Failure reason if this output operation fails
Value Members
- val batchTime: Time
- val description: String
- def duration: Option[Long]
Return the duration of this output operation.
- val endTime: Option[Long]
- val failureReason: Option[String]
- val id: Int
- val name: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val startTime: Option[Long]