Class QueryTimelineSample
Summary of the state of query execution at a given time.
Implements
Inherited Members
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? |
TotalSlotMs
Cumulative slot-ms consumed by the query.
Declaration
[JsonProperty("totalSlotMs")]
public virtual long? TotalSlotMs { get; set; }
Property Value
Type | Description |
---|---|
long? |