# Description Adds Check-Out, Cancelled and Billable Bookings in the new KPI flow. For each of these metrics, it includes: * Daily model * Monthly/MTD without dimension aggregates * Monthly/MTD with dimension aggregates * Schema entries for the abovementioned 5 models * Temporary test to compare the different metrics against current production KPIs I also implemented a quick performance fix that removes the dependency of Billable Bookings from Booking Charge Events, since Bookings table already contains the needed information. # Checklist - [X] The edited models and dependants run properly with production data. - [X] The edited models are sufficiently documented. - [X] The edited models contain PK tests, and I've ran and passed them. - [NA] I have checked for DRY opportunities with other models and docs. - [X] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #23454
53 lines
2 KiB
SQL
53 lines
2 KiB
SQL
{% set min_date = "2022-01-01" %}
|
|
{% set dimensions = ("global", "by_billing_country") %}
|
|
-- "by_number_of_listings" excluded on purpose - there's differences because of daily
|
|
-- segmentation
|
|
with
|
|
new_mtd_cancelled_bookings as (
|
|
select end_date as date, dimension, dimension_value, cancelled_bookings
|
|
from {{ ref("int_kpis__aggregated_mtd_cancelled_bookings") }}
|
|
where
|
|
end_date >= '{{ min_date }}'
|
|
and dimension in {{ dimensions }}
|
|
and dimension_value <> 'UNSET'
|
|
),
|
|
new_monthly_cancelled_bookings as (
|
|
select end_date as date, dimension, dimension_value, cancelled_bookings
|
|
from {{ ref("int_kpis__aggregated_monthly_cancelled_bookings") }}
|
|
where
|
|
end_date >= '{{ min_date }}'
|
|
and dimension in {{ dimensions }}
|
|
and dimension_value <> 'UNSET'
|
|
),
|
|
new_cancelled_bookings as (
|
|
select *
|
|
from new_mtd_cancelled_bookings
|
|
union all
|
|
select *
|
|
from new_monthly_cancelled_bookings
|
|
),
|
|
old_cancelled_bookings as (
|
|
select date, dimension, dimension_value, cancelled_bookings
|
|
from {{ ref("int_core__mtd_cancelled_bookings_metric") }}
|
|
where date >= '{{ min_date }}' and dimension in {{ dimensions }}
|
|
),
|
|
comparison as (
|
|
select
|
|
coalesce(o.date, n.date) as date,
|
|
coalesce(o.dimension, n.dimension) as dimension,
|
|
coalesce(o.dimension_value, n.dimension_value) as dimension_value,
|
|
o.cancelled_bookings as old_cancelled_bookings,
|
|
n.cancelled_bookings as new_cancelled_bookings,
|
|
coalesce(o.cancelled_bookings, 0)
|
|
- coalesce(n.cancelled_bookings, 0) as diff
|
|
from old_cancelled_bookings o
|
|
full outer join
|
|
new_cancelled_bookings n
|
|
on o.date = n.date
|
|
and o.dimension = n.dimension
|
|
and o.dimension_value = n.dimension_value
|
|
)
|
|
select *
|
|
from comparison
|
|
where diff <> 0
|
|
order by date desc, abs(diff) desc
|