forked from GoogleCloudPlatform/bigquery-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaily_project_analysis.sql
94 lines (91 loc) · 3.82 KB
/
daily_project_analysis.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* This script creates a table that contains daily slot consumption information
* about BigQuery jobs for a given set of projects within the past 30 days.
*
* 30 days is the default timeframe, but you can change this by setting the
* num_days_to_scan variable to a different value.
*/
DECLARE num_days_to_scan INT64 DEFAULT 30;
CREATE SCHEMA IF NOT EXISTS optimization_workshop;
CREATE OR REPLACE TABLE optimization_workshop.daily_project_analysis AS
SELECT
day,
project_id,
COUNT(*) AS job_count,
AVG(total_slot_ms)/1000 AS avg_total_slot_secs,
MAX(median_total_slot_ms)/1000 AS median_total_slot_secs,
MAX(p80_total_slot_ms)/1000 AS p80_total_slot_secs,
SUM(total_slot_ms)/1000/60/60 AS total_slot_hours,
AVG(time_secs) AS avg_time_secs,
MAX(median_time_secs) AS median_time_secs,
SUM(time_secs)/60/60 AS total_time_hours,
MAX(p80_time_secs) AS p80_time_secs,
AVG(bytes_scanned)/POW(1024,3) AS avg_gb_scanned,
MAX(p80_bytes_scanned)/POW(1024,3) AS p80_gb_scanned,
SUM(bytes_scanned)/POW(1024,4) AS total_tb_scanned,
AVG(bytes_shuffled)/POW(1024,3) AS avg_gb_shuffled,
MAX(p80_bytes_shuffled)/POW(1024,3) AS p80_gb_shuffled,
SUM(bytes_shuffled)/POW(1024,4) AS total_tb_shuffled,
AVG(bytes_spilled)/POW(1024,3) AS avg_gb_spilled,
MAX(p80_bytes_spilled)/POW(1024,3) AS p80_gb_spilled,
SUM(bytes_spilled)/POW(1024,4) AS total_tb_spilled,
FROM(
SELECT
day,
project_id,
total_slot_ms,
PERCENTILE_CONT(total_slot_ms, 0.5)
OVER (PARTITION BY day, project_id) AS median_total_slot_ms,
PERCENTILE_CONT(total_slot_ms, 0.8)
OVER (PARTITION BY day, project_id) AS p80_total_slot_ms,
time_secs,
PERCENTILE_CONT(time_secs, 0.5)
OVER (PARTITION BY day, project_id) AS median_time_secs,
PERCENTILE_CONT(time_secs, 0.8)
OVER (PARTITION BY day, project_id) AS p80_time_secs,
total_bytes_scanned bytes_scanned,
PERCENTILE_CONT(total_bytes_scanned, 0.8)
OVER (PARTITION BY day, project_id) AS p80_bytes_scanned,
bytes_shuffled,
PERCENTILE_CONT(bytes_shuffled, 0.8)
OVER (PARTITION BY day, project_id) AS p80_bytes_shuffled,
bytes_spilled,
PERCENTILE_CONT(bytes_spilled, 0.8)
OVER (PARTITION BY day, project_id) AS p80_bytes_spilled
FROM(
SELECT
DATE(jbo.creation_time) AS day,
project_id,
job_id,
total_slot_ms,
TIMESTAMP_DIFF(jbo.end_time,jbo.start_time, SECOND) AS time_secs,
total_bytes_billed total_bytes_scanned,
(SELECT SUM(stage.shuffle_output_bytes) FROM UNNEST(job_stages) stage) AS bytes_shuffled,
(SELECT SUM(stage.shuffle_output_bytes_spilled) FROM UNNEST(job_stages) stage) AS bytes_spilled
FROM
`region-us`.INFORMATION_SCHEMA.JOBS_BY_ORGANIZATION jbo
WHERE
DATE(jbo.creation_time) >= CURRENT_DATE - num_days_to_scan
-- Uncomment below to specify a list of projects to analyze
-- AND jbo.project_id IN (<LIST_OF_PROJECT_IDS>)
AND jbo.job_type = 'QUERY'
AND jbo.end_time > jbo.start_time
AND jbo.error_result IS NULL
AND jbo.statement_type != 'SCRIPT'
))
GROUP BY 1, 2;