Skip to content

Commit

Permalink
fix: Switch back to hash join (#26182)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Nov 13, 2024
1 parent d3f3753 commit 6fae14b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions posthog/temporal/batch_exports/batch_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@
SETTINGS
max_bytes_before_external_group_by=50000000000,
max_bytes_before_external_sort=50000000000,
optimize_aggregation_in_order=1,
max_threads=32,
join_algorithm='partial_merge'
optimize_aggregation_in_order=1
"""

SELECT_FROM_PERSONS_VIEW_BACKFILL = """
Expand All @@ -87,9 +85,7 @@
SETTINGS
max_bytes_before_external_group_by=50000000000,
max_bytes_before_external_sort=50000000000,
optimize_aggregation_in_order=1,
max_threads=32,
join_algorithm='partial_merge'
optimize_aggregation_in_order=1
"""

SELECT_FROM_EVENTS_VIEW = Template(
Expand Down

0 comments on commit 6fae14b

Please sign in to comment.