Skip to content

dbt_mixpanel v0.6.1

Compare
Choose a tag to compare
@fivetran-joemarkiewicz fivetran-joemarkiewicz released this 19 Apr 16:18
· 104 commits to main since this release
65a5537

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 the mixpanel__event_frequency_limit (default 1000) variable. Otherwise, it will return 'Too many event types to render'. (#27)