case class BackfillCommandStats(transactionId: String, nameOfTriggeringOperation: String, maxNumBatchesInParallel: Int, totalExecutionTimeMs: Long = 0, numSuccessfulBatches: Int = 0, numFailedBatches: Int = 0, wasSuccessful: Boolean = false) extends Product with Serializable
Metrics for the BackfillCommand.
- maxNumBatchesInParallel
The maximum number of batches that could have run in parallel.
- totalExecutionTimeMs
The total execution time in milliseconds.
- numSuccessfulBatches
The number of BackfillBatch's that was successfully committed.
- numFailedBatches
The number of BackfillBatch's that failed.
- wasSuccessful
Boolean indicating whether this BackfillCommand didn't have any error.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BackfillCommandStats
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new BackfillCommandStats(transactionId: String, nameOfTriggeringOperation: String, maxNumBatchesInParallel: Int, totalExecutionTimeMs: Long = 0, numSuccessfulBatches: Int = 0, numFailedBatches: Int = 0, wasSuccessful: Boolean = false)
- maxNumBatchesInParallel
The maximum number of batches that could have run in parallel.
- totalExecutionTimeMs
The total execution time in milliseconds.
- numSuccessfulBatches
The number of BackfillBatch's that was successfully committed.
- numFailedBatches
The number of BackfillBatch's that failed.
- wasSuccessful
Boolean indicating whether this BackfillCommand didn't have any error.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val maxNumBatchesInParallel: Int
- val nameOfTriggeringOperation: String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- var numFailedBatches: Int
- var numSuccessfulBatches: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- var totalExecutionTimeMs: Long
- val transactionId: String
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- var wasSuccessful: Boolean