Skip to main content

Media Player

Upgrading to 0.7.0โ€‹

This version requires a full refresh run if you have been using any previous versions. You will not be able to upgrade and have the package work without doing a full refresh.

Breaking changes:

  • A new and more robust media_identifier field to replace using media_id as a key in the derived tables.
  • The introduction of new base macro functionality means in places the session and user identifier fields have been renamed to session_identifier and user_identifier.
  • The default session identifier has been updated from using the domain_sessionid, to now be the media session id (or the page/screen view id if the media session entity is not set).
  • Adds a primary key, media_ad_view_id, to the ad views table.

Upgrading to 0.6.0โ€‹

This version requires a full refresh run if you have been using any previous versions. You will not be able to upgrade and have the package work without doing a full refresh.

Please check the quickstart for a guide on which new configuration options to enable. If you remain tracking events using the HTML5 and YouTube tracking plugins for the JavaScript tracker, you should add the following configuration to your dbt_project.yml:

dbt_project.yml
vars:
snowplow_media_player:
# enable the version 1 player property
snowplow__enable_media_player_v1: true
# disable the new version 2 schemas
snowplow__enable_media_player_v2: false
snowplow__enable_media_session: false

On Redshift, the context names no longer require the use of the {{ source('...') }} macro, the table names can be passed directly.

Upgrading to 0.5.0โ€‹

  • Version 1.4.0 of dbt-core now required
  • You must add the following to the top level of your project yaml
    dbt_project.yml
    dispatch:
    - macro_namespace: dbt
    search_order: ['snowplow_utils', 'dbt']
  • Other changes required by snowplow-utils version 0.14.0
  • Other changes required by snowplow-web version 0.14.0, in particular the deduplication logic for Redshift and Postgres users

Upgrading to 0.4.0โ€‹

  • Version 1.3.0 of dbt-core now required
Was this page helpful?