Show / Hide Table of Contents

Class QueryTimelineSample

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

Properties

ActiveUnits

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.

Declaration
[JsonProperty("activeUnits")]
public virtual long? ActiveUnits { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

CompletedUnits

Total parallel units of work completed by this query.

Declaration
[JsonProperty("completedUnits")]
public virtual long? CompletedUnits { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ElapsedMs

Milliseconds elapsed since the start of query execution.

Declaration
[JsonProperty("elapsedMs")]
public virtual long? ElapsedMs { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

PendingUnits

Total parallel units of work remaining for the active stages.

Declaration
[JsonProperty("pendingUnits")]
public virtual long? PendingUnits { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TotalSlotMs

Cumulative slot-ms consumed by the query.

Declaration
[JsonProperty("totalSlotMs")]
public virtual long? TotalSlotMs { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
In This Article
Back to top