Skip to content

Commit

Permalink
Increase event_property threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
scholtzan committed Nov 4, 2021
1 parent 46ab0d0 commit 02ceeba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -14,7 +14,7 @@ telemetry_derived:
dataset: telemetry
source_table: telemetry_derived.deanonymized_events
start_date: 2020-01-01
max_property_values: 1000
max_property_values: 5000
dag_name: bqetl_event_rollup
messaging_system_derived:
name: Firefox Messaging System
Expand Down
Expand Up @@ -108,7 +108,7 @@ per_event_property AS (
USING
(category, event, event_property)
WHERE
event_property_value_index <= 1000
event_property_value_index <= 5000
GROUP BY
category,
event,
Expand Down
Expand Up @@ -184,7 +184,7 @@ all_event_property_value_indices AS (
new_event_property_value_indices
WHERE
-- Doesn't remove historical event_property values
event_property_value_index <= 1000
event_property_value_index <= 5000
UNION ALL
SELECT
category,
Expand Down

0 comments on commit 02ceeba

Please sign in to comment.