Skip to content

Commit 468914d

Browse files
authored
GLAM remove more unsupported pings (#8537)
1 parent 892faff commit 468914d

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

script/glam/generate_glean_sql

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ function write_clients_daily_aggregates {
6262
local tables;
6363
# Pings to exclude
6464
local excluded_tables=(
65-
"use_counters.*" # Use counters bring too many rows to process and GLAM doesn't support them.
66-
"^migration$" # Migration tables are not supported by GLAM and don't have `is_bot_generated` flag.
67-
"^client_deduplication$" # Client deduplication tables are not supported by GLAM and don't have `is_bot_generated` flag.
65+
"use_counters.*" # Use counters bring too many rows to process and GLAM doesn't support them.
66+
"^migration$" # Migration tables are not supported by GLAM and don't have `is_bot_generated` flag.
67+
"^client_deduplication$" # Client deduplication tables are not supported by GLAM and don't have `is_bot_generated` flag.
68+
"^events$" # Not supported by GLAM.
69+
"^nimbus-targeting-context$" # Not supported by GLAM.
6870
)
6971
local exclude_pattern=$(IFS='|'; echo "${excluded_tables[*]}")
7072

0 commit comments

Comments
 (0)