Show / Hide Table of Contents

Class QueryTimelineSample

Summary of the state of query execution at a given time.

Inheritance
object
QueryTimelineSample
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class QueryTimelineSample : IDirectResponseSchema

Properties

ActiveUnits

Total number of active workers. This does not correspond directly to slot usage. This is the largest value observed since the last sample.

Declaration
[JsonProperty("activeUnits")]
public virtual long? ActiveUnits { get; set; }
Property Value
Type Description
long?

CompletedUnits

Total parallel units of work completed by this query.

Declaration
[JsonProperty("completedUnits")]
public virtual long? CompletedUnits { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ElapsedMs

Milliseconds elapsed since the start of query execution.

Declaration
[JsonProperty("elapsedMs")]
public virtual long? ElapsedMs { get; set; }
Property Value
Type Description
long?

EstimatedRunnableUnits

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

Declaration
[JsonProperty("estimatedRunnableUnits")]
public virtual long? EstimatedRunnableUnits { get; set; }
Property Value
Type Description
long?

PendingUnits

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

Declaration
[JsonProperty("pendingUnits")]
public virtual long? PendingUnits { get; set; }
Property Value
Type Description
long?

ShuffleRamUsageRatio

Total shuffle usage ratio in shuffle RAM per reservation of this query. This will be provided for reservation customers only.

Declaration
[JsonProperty("shuffleRamUsageRatio")]
public virtual double? ShuffleRamUsageRatio { get; set; }
Property Value
Type Description
double?

TotalSlotMs

Cumulative slot-ms consumed by the query.

Declaration
[JsonProperty("totalSlotMs")]
public virtual long? TotalSlotMs { get; set; }
Property Value
Type Description
long?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX