Skip to content

Commit

Permalink
Attempt to fix an issue with trino max partitions errors (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenac95 authored Dec 15, 2024
1 parent 4b7d3bd commit bfa3355
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MODEL (
name metrics.first_of_event_from_artifact,
kind FULL,
partitioned_by (day("time"), "event_type", "event_source"),
partitioned_by (year("time"), "event_type", "event_source"),
grain (
time,
event_type,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MODEL (
name metrics.last_of_event_from_artifact,
kind FULL,
partitioned_by (day("time"), "event_type", "event_source"),
partitioned_by (year("time"), "event_type", "event_source"),
grain (
time,
event_type,
Expand Down

0 comments on commit bfa3355

Please sign in to comment.