CheckpointValue

data class CheckpointValue(val records: Long, val serializedBytes: Long, val rejectedRecords: Long = 0)

For tracking counts against checkpoints of records read and persisted. Currently it only tracks row count, but could be extended to track bytes moved if needed.

Constructors

Link copied to clipboard
constructor(records: Long, serializedBytes: Long, rejectedRecords: Long = 0)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
operator fun plus(other: CheckpointValue): CheckpointValue