Class LoadQueryStatistics
Statistics for a LOAD query.
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class LoadQueryStatistics : IDirectResponseSchema
Properties
BadRecords
Output only. The number of bad records encountered while processing a LOAD query. Note that if the job has failed because of more bad records encountered than the maximum allowed in the load job configuration, then this number can be less than the total number of bad records present in the input data.
Declaration
[JsonProperty("badRecords")]
public virtual long? BadRecords { get; set; }
Property Value
Type | Description |
---|---|
long? |
BytesTransferred
Output only. This field is deprecated. The number of bytes of source data copied over the network for a
LOAD
query. transferred_bytes
has the canonical value for physical transferred bytes, which is used for
BigQuery Omni billing.
Declaration
[JsonProperty("bytesTransferred")]
public virtual long? BytesTransferred { 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 |
InputFileBytes
Output only. Number of bytes of source data in a LOAD query.
Declaration
[JsonProperty("inputFileBytes")]
public virtual long? InputFileBytes { get; set; }
Property Value
Type | Description |
---|---|
long? |
InputFiles
Output only. Number of source files in a LOAD query.
Declaration
[JsonProperty("inputFiles")]
public virtual long? InputFiles { get; set; }
Property Value
Type | Description |
---|---|
long? |
OutputBytes
Output only. Size of the loaded data in bytes. Note that while a LOAD query is in the running state, this value may change.
Declaration
[JsonProperty("outputBytes")]
public virtual long? OutputBytes { get; set; }
Property Value
Type | Description |
---|---|
long? |
OutputRows
Output only. Number of rows imported in a LOAD query. Note that while a LOAD query is in the running state, this value may change.
Declaration
[JsonProperty("outputRows")]
public virtual long? OutputRows { get; set; }
Property Value
Type | Description |
---|---|
long? |