dbt_mixpanel v0.6.1
·
104 commits
to main
since this release
Happy Tuesday 🌮
This release of the dbt_mixpanel
package includes the following updates:
Fixes
- Redshift and Postgres warehouses have a limit to the amount of aggregation that may take place within certain functions. The
mixpanel__sessions
model currently performs a LISTAGG and customers have identified the aggregation sometimes exceeds the limit of the function. Therefore, a conditional was added to check if the target type is Redshift or Postgres. If it is either, it will only perform the aggregation if the count is less than the amount defined by themixpanel__event_frequency_limit
(default 1000) variable. Otherwise, it will return 'Too many event types to render'. (#27)