JOBS_TIMELINE_BY_USER view
TheINFORMATION_SCHEMA.JOBS_TIMELINE_BY_USER view contains near real-timeBigQuery metadata by timeslice of the jobs submitted by thecurrent user in the current project. This view contains currently running andcompleted jobs.
Required permissions
To query theINFORMATION_SCHEMA.JOBS_TIMELINE_BY_USER view, you need thebigquery.jobs.list Identity and Access Management (IAM) permission for the project.Each of the following predefined IAM roles includes the requiredpermission:
- Project Viewer
- BigQuery User
For more information about BigQuery permissions, seeAccess control with IAM.
Schema
When you query theINFORMATION_SCHEMA.JOBS_TIMELINE_BY_* views, the queryresults contain one row for every second of execution of everyBigQuery job. Each period starts on a whole-second interval andlasts exactly one second.
TheINFORMATION_SCHEMA.JOBS_TIMELINE_BY_* view has the following schema:
job_creation_time column andclustered byproject_id anduser_email.| Column name | Data type | Value |
|---|---|---|
period_start | TIMESTAMP | Start time of this period. |
period_slot_ms | INTEGER | Slot milliseconds consumed in this period. |
project_id | STRING | (Clustering column) ID of the project. |
project_number | INTEGER | Number of the project. |
user_email | STRING | (Clustering column) Email address or service account of the user who ran the job. |
principal_subject | STRING | A string representation of the identity of the principal that ran the job. |
job_id | STRING | ID of the job. For example,bquxjob_1234. |
job_type | STRING | The type of the job. Can beQUERY,LOAD,EXTRACT,COPY, orNULL. ANULL value indicates a background job. |
labels | RECORD | Array of labels applied to the job as key-value pairs. |
statement_type | STRING | The type of query statement, if valid. For example,SELECT,INSERT,UPDATE, orDELETE. |
priority | STRING | The priority of this job. Valid values includeINTERACTIVE andBATCH. |
parent_job_id | STRING | ID of the parent job, if any. |
job_creation_time | TIMESTAMP | (Partitioning column) Creation time of this job. Partitioning is based on the UTC time of this timestamp. |
job_start_time | TIMESTAMP | Start time of this job. |
job_end_time | TIMESTAMP | End time of this job. |
state | STRING | Running state of the job at the end of this period. Valid states includePENDING,RUNNING, andDONE. |
reservation_id | STRING | Name of the primary reservation assigned to this job at the end of this period, if applicable. |
edition | STRING | The edition associated with the reservation assigned to this job. For more information about editions, seeIntroduction to BigQuery editions. |
total_bytes_billed | INTEGER | If the project is configured to useon-demand pricing, then this field contains the total bytes billed for the job. If the project is configured to useflat-rate pricing, then you are not billed for bytes and this field is informational only. This field is only populated for completed jobs and contains the total number of bytes billed for the entire duration of the job. |
total_bytes_processed | INTEGER | Total bytes processed by the job. This field is only populated for completed jobs and contains the total number of bytes processed over the entire duration of the job. |
error_result | RECORD | Details of error (if any) as anErrorProto. |
cache_hit | BOOLEAN | Whether the query results of this job were from a cache. |
period_shuffle_ram_usage_ratio | FLOAT | Shuffle usage ratio in the selected time period. The value is0.0 if the job ran with a reservation that uses autoscaling and has zero baseline slots. |
period_estimated_runnable_units | INTEGER | Units of work that can be scheduled immediately in this period. Additional slots for these units of work accelerate your query, provided no other query in the reservation needs additional slots. |
transaction_id | STRING | ID of thetransaction in which this job ran, if any. |
For stability, we recommend that you explicitly list columns in your information schema queries instead ofusing a wildcard (SELECT *). Explicitly listing columns prevents queries frombreaking if the underlying schema changes.
Data retention
This view displays running jobs along with job history for the past 180 days.If a project migrates to an organization (either from having no organization orfrom a different one), job information predating the migration date isn'taccessible through theINFORMATION_SCHEMA.JOBS_TIMELINE_BY_USER view, as theview only retains data starting from the migration date.
Scope and syntax
Queries against this view must include aregion qualifier.If you do not specify a regional qualifier, metadata is retrieved from allregions. The following table explains the region and resource scope for thisview:
| View name | Resource scope | Region scope |
|---|---|---|
[PROJECT_ID.]`region-REGION`.INFORMATION_SCHEMA.JOBS_TIMELINE_BY_USER | Jobs submitted by the current user in the specified project. | REGION |
- Optional:
PROJECT_ID: the ID of your Google Cloud project. If not specified, the default project is used. REGION: anydataset region name. For example,`region-us`.Note: You must usea region qualifier to query
INFORMATION_SCHEMAviews. The location of the query execution must match the region of theINFORMATION_SCHEMAview.
Example
The following query displays the total slot milliseconds consumed per secondby jobs submitted by the current user in the designated project:
SELECTperiod_start,SUM(period_slot_ms)AStotal_period_slot_msFROM`region-us`.INFORMATION_SCHEMA.JOBS_TIMELINE_BY_USERGROUPBYperiod_startORDERBYperiod_startDESC;
INFORMATION_SCHEMA view names are case-sensitive.The result is similar to the following:
+---------------------------+---------------------------------+| period_start | total_period_slot_ms |+---------------------------+---------------------------------+| 2019-10-10 00:00:04 UTC | 118639 || 2019-10-10 00:00:03 UTC | 251353 || 2019-10-10 00:00:02 UTC | 1074064 || 2019-10-10 00:00:01 UTC | 1124868 || 2019-10-10 00:00:00 UTC | 1113961 |+---------------------------+---------------------------------+
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2026-02-18 UTC.