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:

Note: The underlying data is partitioned by thejob_creation_time column andclustered byproject_id anduser_email.
Column nameData typeValue
period_startTIMESTAMP Start time of this period.
period_slot_msINTEGER Slot milliseconds consumed in this period.
project_idSTRING(Clustering column) ID of the project.
project_numberINTEGERNumber of the project.
user_emailSTRING(Clustering column) Email address or service account of the user who ran the job.
principal_subjectSTRING A string representation of the identity of the principal that ran the job.
job_idSTRINGID of the job. For example,bquxjob_1234.
job_typeSTRINGThe type of the job. Can beQUERY,LOAD,EXTRACT,COPY, orNULL. ANULL value indicates a background job.
labelsRECORDArray of labels applied to the job as key-value pairs.
statement_typeSTRINGThe type of query statement, if valid. For example,SELECT,INSERT,UPDATE, orDELETE.
prioritySTRINGThe priority of this job. Valid values includeINTERACTIVE andBATCH.
parent_job_idSTRINGID of the parent job, if any.
job_creation_timeTIMESTAMP(Partitioning column) Creation time of this job. Partitioning is based on the UTC time of this timestamp.
job_start_timeTIMESTAMPStart time of this job.
job_end_timeTIMESTAMPEnd time of this job.
stateSTRINGRunning state of the job at the end of this period. Valid states includePENDING,RUNNING, andDONE.
reservation_idSTRINGName of the primary reservation assigned to this job at the end of this period, if applicable.
editionSTRINGThe edition associated with the reservation assigned to this job. For more information about editions, seeIntroduction to BigQuery editions.
total_bytes_billedINTEGER 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_processedINTEGERTotal 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_resultRECORDDetails of error (if any) as anErrorProto.
cache_hitBOOLEANWhether the query results of this job were from a cache.
period_shuffle_ram_usage_ratioFLOATShuffle 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_unitsINTEGERUnits 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_idSTRING 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 nameResource scopeRegion scope
[PROJECT_ID.]`region-REGION`.INFORMATION_SCHEMA.JOBS_TIMELINE_BY_USERJobs submitted by the current user in the specified project.REGION
Replace the following:
  • 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 queryINFORMATION_SCHEMA views. The location of the query execution must match the region of theINFORMATION_SCHEMA view.

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;
Note: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.