Skip to content

Commit

Permalink
update tags
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko authored and GCP Dataform committed Jan 22, 2025
1 parent 9ec8a81 commit 9d7610c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion definitions/output/blink_features/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish('features', {
partitionBy: 'yyyymmdd',
clusterBy: ['client', 'rank']
},
tags: ['crawl_complete']
tags: ['crawl_complete', 'blink_report']
}).preOps(ctx => `
DELETE FROM ${ctx.self()}
WHERE yyyymmdd = DATE '${constants.currentMonth}';
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/blink_features/usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ publish('usage', {
schema: 'blink_features',
type: 'incremental',
protected: true,
tags: ['crawl_complete']
tags: ['crawl_complete', 'blink_report']
}).preOps(ctx => `
DELETE FROM ${ctx.self()}
WHERE yyyymmdd = REPLACE('${constants.currentMonth}', '-', '');
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/core_web_vitals/technologies.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish('technologies', {
clusterBy: ['geo', 'app', 'rank', 'client'],
requirePartitionFilter: true
},
tags: ['crux_ready'],
tags: ['crux_ready', 'tech_report'],
dependOnDependencyAssertions: true
}).preOps(ctx => `
DELETE FROM ${ctx.self()}
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_adoption.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish('cwv_tech_adoption', {
partitionBy: 'date',
clusterBy: ['rank', 'geo']
},
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).preOps(ctx => `
DELETE FROM ${ctx.self()}
WHERE date = '${pastMonth}';
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
publish('cwv_tech_categories', {
schema: 'reports',
type: 'table',
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).query(ctx => `
/* {"dataform_trigger": "report_cwv_tech_complete", "name": "categories", "type": "dict"} */
WITH pages AS (
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_core_web_vitals.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish('cwv_tech_core_web_vitals', {
partitionBy: 'date',
clusterBy: ['rank', 'geo']
},
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).preOps(ctx => `
CREATE TEMPORARY FUNCTION GET_VITALS(
records ARRAY<STRUCT<
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_lighthouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish('cwv_tech_lighthouse', {
partitionBy: 'date',
clusterBy: ['rank', 'geo']
},
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).preOps(ctx => `
CREATE TEMPORARY FUNCTION GET_LIGHTHOUSE(
records ARRAY<STRUCT<
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_page_weight.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish('cwv_tech_page_weight', {
partitionBy: 'date',
clusterBy: ['rank', 'geo']
},
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).preOps(ctx => `
CREATE TEMPORARY FUNCTION GET_PAGE_WEIGHT(
records ARRAY<STRUCT<
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/cwv_tech_technologies.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const pastMonth = constants.fnPastMonth(constants.currentMonth)
publish('cwv_tech_technologies', {
schema: 'reports',
type: 'table',
tags: ['crux_ready']
tags: ['crux_ready', 'tech_report']
}).query(ctx => `
/* {"dataform_trigger": "report_cwv_tech_complete", "name": "technologies", "type": "dict"} */
WITH pages AS (
Expand Down
2 changes: 1 addition & 1 deletion definitions/output/reports/reports_dynamic.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (iterations.length === 1) {
protected: true,
bigquery: sql.type === 'histogram' ? { partitionBy: 'date', clusterBy: ['client'] } : {},
schema: 'reports',
tags: ['crawl_complete']
tags: ['crawl_complete', 'http_reports']
}).preOps(ctx => `
--DELETE FROM ${ctx.self()}
--WHERE date = '${params.date}';
Expand Down

0 comments on commit 9d7610c

Please sign in to comment.