QueryTimelineSampleResponse

data class QueryTimelineSampleResponse(val activeUnits: String, val completedUnits: String, val elapsedMs: String, val estimatedRunnableUnits: String, val pendingUnits: String, val totalSlotMs: String)

Constructors

Link copied to clipboard
fun QueryTimelineSampleResponse(activeUnits: String, completedUnits: String, elapsedMs: String, estimatedRunnableUnits: String, pendingUnits: String, totalSlotMs: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Total number of units currently being processed by workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample.

Link copied to clipboard

Total parallel units of work completed by this query.

Link copied to clipboard

Milliseconds elapsed since the start of query execution.

Link copied to clipboard

Units of work that can be scheduled immediately. Providing additional slots for these units of work will speed up the query, provided no other query in the reservation needs additional slots.

Link copied to clipboard

Total units of work remaining for the query. This number can be revised (increased or decreased) while the query is running.

Link copied to clipboard

Cumulative slot-ms consumed by the query.