case class BatchInfo(batchTime: Time, streamIdToInputInfo: Map[Int, StreamInputInfo], submissionTime: Long, processingStartTime: Option[Long], processingEndTime: Option[Long], outputOperationInfos: Map[Int, OutputOperationInfo]) extends Product with Serializable
Class having information on completed batches.
- batchTime
Time of the batch
- streamIdToInputInfo
A map of input stream id to its input info
- submissionTime
Clock time of when jobs of this batch was submitted to the streaming scheduler queue
- processingStartTime
Clock time of when the first job of this batch started processing
- processingEndTime
Clock time of when the last job of this batch finished processing
- outputOperationInfos
The output operations in this batch
- Annotations
- @DeveloperApi()
- Source
- BatchInfo.scala
- Alphabetic
- By Inheritance
- BatchInfo
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
BatchInfo(batchTime: Time, streamIdToInputInfo: Map[Int, StreamInputInfo], submissionTime: Long, processingStartTime: Option[Long], processingEndTime: Option[Long], outputOperationInfos: Map[Int, OutputOperationInfo])
- batchTime
Time of the batch
- streamIdToInputInfo
A map of input stream id to its input info
- submissionTime
Clock time of when jobs of this batch was submitted to the streaming scheduler queue
- processingStartTime
Clock time of when the first job of this batch started processing
- processingEndTime
Clock time of when the last job of this batch finished processing
- outputOperationInfos
The output operations in this batch
Value Members
- val batchTime: Time
-
def
numRecords: Long
The number of recorders received by the receivers in this batch.
- val outputOperationInfos: Map[Int, OutputOperationInfo]
-
def
processingDelay: Option[Long]
Time taken for the all jobs of this batch to finish processing from the time they started processing.
Time taken for the all jobs of this batch to finish processing from the time they started processing. Essentially, it is
processingEndTime
-processingStartTime
. - val processingEndTime: Option[Long]
- val processingStartTime: Option[Long]
-
def
schedulingDelay: Option[Long]
Time taken for the first job of this batch to start processing from the time this batch was submitted to the streaming scheduler.
Time taken for the first job of this batch to start processing from the time this batch was submitted to the streaming scheduler. Essentially, it is
processingStartTime
-submissionTime
. - val streamIdToInputInfo: Map[Int, StreamInputInfo]
- val submissionTime: Long
-
def
totalDelay: Option[Long]
Time taken for all the jobs of this batch to finish processing from the time they were submitted.
Time taken for all the jobs of this batch to finish processing from the time they were submitted. Essentially, it is
processingDelay
+schedulingDelay
.