-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBigQueryStorage.sql
More file actions
436 lines (380 loc) · 14.7 KB
/
Copy pathBigQueryStorage.sql
File metadata and controls
436 lines (380 loc) · 14.7 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
-- chains together 5 projects, reads their schemas, inserts a snapshot into a destination table.
delete from `<schema_history_table_id>`
where cal_date < date_sub(current_date(), INTERVAL 365 DAY);
create or replace temp table mq as (
with part_clust as(
select
table_catalog,
table_schema,
table_name,
max(case
when is_partitioning_column = 'YES' then column_name
else null
end) as partitioned_on,
max(case
when CLUSTERING_ORDINAL_POSITION is not null then 1
else 0
end) as is_clustered,
from <project_name>.`region-EU`.INFORMATION_SCHEMA.COLUMNS
where is_partitioning_column = 'YES'
or (is_partitioning_column = 'NO' and CLUSTERING_ORDINAL_POSITION = 1)
group by table_catalog, table_schema, table_name
union all
select
table_catalog,
table_schema,
table_name,
max(case
when is_partitioning_column = 'YES' then column_name
else null
end) as partitioned_on,
max(case
when CLUSTERING_ORDINAL_POSITION is not null then 1
else 0
end) as is_clustered,
from <project_name>.`region-EU`.INFORMATION_SCHEMA.COLUMNS
where is_partitioning_column = 'YES'
or (is_partitioning_column = 'NO' and CLUSTERING_ORDINAL_POSITION = 1)
group by table_catalog, table_schema, table_name
union all
select
table_catalog,
table_schema,
table_name,
max(case
when is_partitioning_column = 'YES' then column_name
else null
end) as partitioned_on,
max(case
when CLUSTERING_ORDINAL_POSITION is not null then 1
else 0
end) as is_clustered,
from <project_name>.`region-EU`.INFORMATION_SCHEMA.COLUMNS
where is_partitioning_column = 'YES'
or (is_partitioning_column = 'NO' and CLUSTERING_ORDINAL_POSITION = 1)
group by table_catalog, table_schema, table_name
union all
select
table_catalog,
table_schema,
table_name,
max(case
when is_partitioning_column = 'YES' then column_name
else null
end) as partitioned_on,
max(case
when CLUSTERING_ORDINAL_POSITION is not null then 1
else 0
end) as is_clustered,
from <project_name>.`region-EU`.INFORMATION_SCHEMA.COLUMNS
where is_partitioning_column = 'YES'
or (is_partitioning_column = 'NO' and CLUSTERING_ORDINAL_POSITION = 1)
group by table_catalog, table_schema, table_name
union all
select
table_catalog,
table_schema,
table_name,
max(case
when is_partitioning_column = 'YES' then column_name
else null
end) as partitioned_on,
max(case
when CLUSTERING_ORDINAL_POSITION is not null then 1
else 0
end) as is_clustered,
from <project_name>.`region-EU`.INFORMATION_SCHEMA.COLUMNS
where is_partitioning_column = 'YES'
or (is_partitioning_column = 'NO' and CLUSTERING_ORDINAL_POSITION = 1)
group by table_catalog, table_schema, table_name
),
historic_schema as (
select
cal_date,
project_name as project_name_previous_day,
dataset_name as dataset_name_previous_day,
table_name as table_name_previous_day,
total_rows as total_rows_previous_day,
(avg(total_rows) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_rows_last_7_days,
total_logical_bytes as total_logical_bytes_previous_day,
(avg(total_logical_bytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_logical_bytes_last_7_days,
total_logical_gigabytes as total_logical_gigabytes_previous_day,
(avg(total_logical_gigabytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_logical_gigabytes_last_7_days,
total_logical_terabytes as total_logical_terabytes_previous_day,
(avg(total_logical_terabytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_logical_terabytes_last_7_days,
total_physical_bytes as total_physical_bytes_previous_day,
(avg(total_physical_bytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_physical_bytes_last_7_days,
total_physical_gigabytes as total_physical_gigabytes_previous_day,
(avg(total_physical_gigabytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_physical_gigabytes_last_7_days,
total_physical_terabytes as total_physical_terabytes_previous_day,
(avg(total_physical_terabytes) over (partition by table_name, dataset_name, project_name order by cal_date rows between 6 preceding and 0 following)) as mean_total_physical_terabytes_last_7_days,
from `<schema_history_table_id>`
order by cal_date desc
),
live_schema as (
select
current_date as cal_date,
concat(table_catalog, '.',table_schema,'.',t.table_name) as full_name,
table_catalog as project_name,
table_schema as dataset_name,
t.table_name,
case
when table_schema = 'daily_table_back_up' then 1
else 0
end as is_daily_back_up_flag,
creation_time,
t.storage_last_modified_time,
t.total_rows,
t.total_partitions,
deleted,
case
when t.total_partitions > 0 then 1
else 0
end as is_partitioned_flag,
total_logical_bytes,
total_physical_bytes,
(total_logical_bytes/(1024 * 1024 * 1024)) as total_logical_gigabytes,
(total_physical_bytes/(1024 * 1024 * 1024)) as total_physical_gigabytes,
(total_logical_bytes/(1024 * 1024 * 1024 * 1024)) as total_logical_terabytes,
(total_physical_bytes/(1024 * 1024 * 1024 * 1024)) as total_physical_terabytes,
table_type
from <project_name>.`region-EU`.INFORMATION_SCHEMA.TABLE_STORAGE as t
where not regexp_contains(table_schema, r'^_')
and deleted = false
union all
select
current_date as cal_date,
concat(table_catalog, '.',table_schema,'.',t.table_name) as full_name,
table_catalog as project_name,
table_schema as dataset_name,
t.table_name,
case
when table_schema = 'daily_table_back_up' then 1
else 0
end as is_daily_back_up_flag,
creation_time,
t.storage_last_modified_time,
t.total_rows,
t.total_partitions,
deleted,
case
when t.total_partitions > 0 then 1
else 0
end as is_partitioned_flag,
total_logical_bytes,
total_physical_bytes,
(total_logical_bytes/(1024 * 1024 * 1024)) as total_logical_gigabytes,
(total_physical_bytes/(1024 * 1024 * 1024)) as total_physical_gigabytes,
(total_logical_bytes/(1024 * 1024 * 1024 * 1024)) as total_logical_terabytes,
(total_physical_bytes/(1024 * 1024 * 1024 * 1024)) as total_physical_terabytes,
table_type
from <project_name>.`region-EU`.INFORMATION_SCHEMA.TABLE_STORAGE as t
where not regexp_contains(table_schema, r'^_')
and deleted = false
union all
select
current_date as cal_date,
concat(table_catalog, '.',table_schema,'.',t.table_name) as full_name,
table_catalog as project_name,
table_schema as dataset_name,
t.table_name,
case
when table_schema = 'daily_table_back_up' then 1
else 0
end as is_daily_back_up_flag,
creation_time,
t.storage_last_modified_time,
t.total_rows,
t.total_partitions,
deleted,
case
when t.total_partitions > 0 then 1
else 0
end as is_partitioned_flag,
total_logical_bytes,
total_physical_bytes,
(total_logical_bytes/(1024 * 1024 * 1024)) as total_logical_gigabytes,
(total_physical_bytes/(1024 * 1024 * 1024)) as total_physical_gigabytes,
(total_logical_bytes/(1024 * 1024 * 1024 * 1024)) as total_logical_terabytes,
(total_physical_bytes/(1024 * 1024 * 1024 * 1024)) as total_physical_terabytes,
table_type
from <project_name>.`region-EU`.INFORMATION_SCHEMA.TABLE_STORAGE as t
where not regexp_contains(table_schema, r'^_')
and deleted = false
union all
select
current_date as cal_date,
concat(table_catalog, '.',table_schema,'.',t.table_name) as full_name,
table_catalog as project_name,
table_schema as dataset_name,
t.table_name,
case
when table_schema = 'daily_table_back_up' then 1
else 0
end as is_daily_back_up_flag,
creation_time,
t.storage_last_modified_time,
t.total_rows,
t.total_partitions,
deleted,
case
when t.total_partitions > 0 then 1
else 0
end as is_partitioned_flag,
total_logical_bytes,
total_physical_bytes,
(total_logical_bytes/(1024 * 1024 * 1024)) as total_logical_gigabytes,
(total_physical_bytes/(1024 * 1024 * 1024)) as total_physical_gigabytes,
(total_logical_bytes/(1024 * 1024 * 1024 * 1024)) as total_logical_terabytes,
(total_physical_bytes/(1024 * 1024 * 1024 * 1024)) as total_physical_terabytes,
table_type
from <project_name>.`region-EU`.INFORMATION_SCHEMA.TABLE_STORAGE as t
where not regexp_contains(table_schema, r'^_')
and deleted = false
union all
select
current_date as cal_date,
concat(table_catalog, '.',table_schema,'.',t.table_name) as full_name,
table_catalog as project_name,
table_schema as dataset_name,
t.table_name,
case
when table_schema = 'daily_table_back_up' then 1
else 0
end as is_daily_back_up_flag,
creation_time,
t.storage_last_modified_time,
t.total_rows,
t.total_partitions,
deleted,
case
when t.total_partitions > 0 then 1
else 0
end as is_partitioned_flag,
total_logical_bytes,
total_physical_bytes,
(total_logical_bytes/(1024 * 1024 * 1024)) as total_logical_gigabytes,
(total_physical_bytes/(1024 * 1024 * 1024)) as total_physical_gigabytes,
(total_logical_bytes/(1024 * 1024 * 1024 * 1024)) as total_logical_terabytes,
(total_physical_bytes/(1024 * 1024 * 1024 * 1024)) as total_physical_terabytes,
table_type
from <project_name>.`region-EU`.INFORMATION_SCHEMA.TABLE_STORAGE as t
where not regexp_contains(table_schema, r'^_')
and deleted = false
)
select
ls.cal_date,
extract(DAYOFWEEK from ls.cal_date) as day_of_week_number,
format_date('%A', date(ls.cal_date)) as day_of_week,
hs.cal_date as previous_day_cal_date,
ls.full_name,
ls.project_name,
ls.dataset_name,
ls.table_name,
ls.creation_time,
ls.storage_last_modified_time,
ls.total_rows,
hs.total_rows_previous_day,
ls.total_rows - hs.total_rows_previous_day as total_row_previous_day_difference,
hs.mean_total_rows_last_7_days,
ieee_divide (ls.total_rows, hs.mean_total_rows_last_7_days) as total_rows_mean_variance,
ls.is_partitioned_flag,
pc.partitioned_on,
ls.total_partitions,
case
when pc.is_clustered is null then 0
else is_clustered
end as is_clustered_flag,
ls.is_daily_back_up_flag,
ls.total_logical_bytes,
hs.total_logical_bytes_previous_day,
ls.total_logical_bytes - hs.total_logical_bytes_previous_day as total_logical_bytes_day_difference,
hs.mean_total_logical_bytes_last_7_days,
ieee_divide (ls.total_logical_bytes, hs.mean_total_logical_bytes_last_7_days) as total_logical_bytes_mean_variance,
ls.total_logical_gigabytes,
hs.total_logical_gigabytes_previous_day,
ls.total_logical_gigabytes - hs.total_logical_gigabytes_previous_day as total_logical_gigabytes_day_difference,
hs.mean_total_logical_gigabytes_last_7_days,
ieee_divide (ls.total_logical_gigabytes, hs.mean_total_logical_gigabytes_last_7_days) as total_logical_gigabytes_mean_variance,
ls.total_logical_terabytes,
hs.total_logical_terabytes_previous_day,
ls.total_logical_terabytes - hs.total_logical_terabytes_previous_day as total_logical_terabytes_day_difference,
hs.mean_total_logical_terabytes_last_7_days,
ieee_divide (ls.total_logical_terabytes, hs.mean_total_logical_terabytes_last_7_days) as total_logical_terabytes_mean_variance,
ls.total_physical_bytes,
hs.total_physical_bytes_previous_day,
ls.total_physical_bytes - hs.total_physical_bytes_previous_day as total_physical_bytes_day_difference,
hs.mean_total_physical_bytes_last_7_days,
ieee_divide (ls.total_physical_bytes, hs.mean_total_physical_bytes_last_7_days) as total_physical_bytes_mean_variance,
ls.total_physical_gigabytes,
hs.total_physical_gigabytes_previous_day,
ls.total_physical_gigabytes - hs.total_physical_gigabytes_previous_day as total_physical_gigabytes_day_difference,
hs.mean_total_physical_gigabytes_last_7_days,
ieee_divide (ls.total_physical_gigabytes, hs.mean_total_physical_gigabytes_last_7_days) as total_physical_gigabytes_mean_variance,
ls.total_physical_terabytes,
hs.total_physical_terabytes_previous_day,
ls.total_physical_terabytes - hs.total_physical_terabytes_previous_day as total_physical_terabytes_day_difference,
hs.mean_total_physical_terabytes_last_7_days,
ieee_divide (ls.total_physical_terabytes, hs.mean_total_physical_terabytes_last_7_days) as total_physical_terabytes_mean_variance,
ls.table_type,
from live_schema as ls
left join part_clust as pc on ls.table_name = pc.table_name and ls.dataset_name = pc.table_schema and ls.project_name = pc.table_catalog
left join historic_schema as hs on ls.cal_date = date_add(hs.cal_date, interval 1 day) and ls.table_name = hs.table_name_previous_day and ls.dataset_name = hs.dataset_name_previous_day and ls.project_name = hs.project_name_previous_day
order by project_name, dataset_name, table_name asc)
;
insert into `<schema_history_table_id>`
select
cal_date,
day_of_week_number,
day_of_week,
previous_day_cal_date,
full_name,
project_name,
dataset_name,
table_name,
creation_time,
storage_last_modified_time,
total_rows,
total_rows_previous_day,
total_row_previous_day_difference,
mean_total_rows_last_7_days,
total_rows_mean_variance,
is_partitioned_flag,
partitioned_on,
total_partitions,
is_clustered_flag,
is_daily_back_up_flag,
total_logical_bytes,
total_logical_bytes_previous_day,
total_logical_bytes_day_difference,
mean_total_logical_bytes_last_7_days,
total_logical_bytes_mean_variance,
total_logical_gigabytes,
total_logical_gigabytes_previous_day,
total_logical_gigabytes_day_difference,
mean_total_logical_gigabytes_last_7_days,
total_logical_gigabytes_mean_variance,
total_logical_terabytes,
total_logical_terabytes_previous_day,
total_logical_terabytes_day_difference,
mean_total_logical_terabytes_last_7_days,
total_logical_terabytes_mean_variance,
total_physical_bytes,
total_physical_bytes_previous_day,
total_physical_bytes_day_difference,
mean_total_physical_bytes_last_7_days,
total_physical_bytes_mean_variance,
total_physical_gigabytes,
total_physical_gigabytes_previous_day,
total_physical_gigabytes_day_difference,
mean_total_physical_gigabytes_last_7_days,
total_physical_gigabytes_mean_variance,
total_physical_terabytes,
total_physical_terabytes_previous_day,
total_physical_terabytes_day_difference,
mean_total_physical_terabytes_last_7_days,
total_physical_terabytes_mean_variance,
table_type
from mq
;
end;