AI-generated Key Takeaways
-
Query performance info is represented in JSON format.
-
The
data_processed
field indicates the size of data the query reads and can be zero, less than one MiB, or a specific number of MiB. -
The
data_processed
field is a union field, meaning only one of its subfields (zeroMb
,lessThanOneMb
, orprocessedMb
) can be set at a time.
Performance info for the query execution.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field data_processed . Data size this query reads. See https://cloud.google.com/bigquery/pricing#data for details on how this is calculated. data_processed can be only one of the following: |
|
zeroMb |
True if the processed data is 0 bytes. |
lessThanOneMb |
True if the processed data is less than 1 MiB. |
processedMb |
MiB data this query reads. Set if the data size is equal to or larger than 1 MiB. -1 means we could not fetch the processed bytes for this query. |