JobStatistics(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Job statistics that may change after a job starts.
Attributes
Name | Description |
create_time |
google.protobuf.timestamp_pb2.Timestamp
Time when the job was created. |
start_time |
google.protobuf.timestamp_pb2.Timestamp
Time when the job started. |
end_time |
google.protobuf.timestamp_pb2.Timestamp
Time when the job ended. |
total_processed_bytes |
int
Total bytes processed for a job. |
total_billed_bytes |
int
Processed bytes, adjusted by the job's CPU usage. |
billing_tier |
int
The tier assigned by CPU-based billing. |
total_slot_ms |
int
The total number of slot-ms consumed by the query job. |
reservation_usage |
Sequence[google.cloud.bigquery_logging_v1.types.JobStatistics.ReservationResourceUsage]
Reservation usage. |
referenced_tables |
Sequence[google.cloud.bigquery_logging_v1.types.TableName]
The first N tables accessed by the query job. Older queries that reference a large number of tables may not have all of their tables in this list. You can use the total_tables_processed count to know how many total tables were read in the query. For new queries, there is currently no limit. |
total_tables_processed |
int
Total number of unique tables referenced in the query. |
referenced_views |
Sequence[google.cloud.bigquery_logging_v1.types.TableName]
The first N views accessed by the query job. Older queries that reference a large number of views may not have all of their views in this list. You can use the total_tables_processed count to know how many total tables were read in the query. For new queries, there is currently no limit. |
total_views_processed |
int
Total number of unique views referenced in the query. |
query_output_row_count |
int
Number of output rows produced by the query job. |
total_load_output_bytes |
int
Total bytes loaded for an import job. |
Classes
ReservationResourceUsage
ReservationResourceUsage(mapping=None, *, ignore_unknown_fields=False, **kwargs)
Job resource usage breakdown by reservation.