-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(event): Add view to allow caching of charge/filters for billable…
…_metrics (#2231) This PR is part of the real-time aggregation epic This PR adds a new `billable_metrics_grouped_charges` database view. It selects the charges for each organization/billable metric code/plan tupple. It will be used to route events received on the ingest service to the right bucket in order to perform a pre-computation and allow future "real time aggregation"
- Loading branch information
1 parent
d46e5d4
commit 1e91af7
Showing
4 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
db/migrate/20240701083355_create_billable_metrics_grouped_charges.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
class CreateBillableMetricsGroupedCharges < ActiveRecord::Migration[7.1] | ||
disable_ddl_transaction! | ||
|
||
def change | ||
create_view :billable_metrics_grouped_charges | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
select | ||
billable_metrics.organization_id, | ||
billable_metrics.code, | ||
billable_metrics.aggregation_type, | ||
billable_metrics.field_name, | ||
charges.plan_id, | ||
charges.id as charge_id, | ||
charge_filters.id as charge_filter_id, | ||
json_object_agg( | ||
billable_metric_filters.key, | ||
coalesce(charge_filter_values.values, '{}') | ||
order by billable_metric_filters.key asc | ||
) FILTER (WHERE billable_metric_filters.key IS NOT NULL) AS filters, | ||
( | ||
case when charges.charge_model = 0 -- Standard | ||
then | ||
coalesce(charge_filters.properties->'grouped_by', charges.properties->'grouped_by') | ||
else | ||
null | ||
end | ||
) AS grouped_by | ||
|
||
from billable_metrics | ||
inner join charges on charges.billable_metric_id = billable_metrics.id | ||
left join charge_filters on charge_filters.charge_id = charges.id | ||
left join charge_filter_values on charge_filter_values.charge_filter_id = charge_filters.id | ||
left join billable_metric_filters on charge_filter_values.billable_metric_filter_id = billable_metric_filters.id | ||
where | ||
billable_metrics.deleted_at is null | ||
and charges.deleted_at is null | ||
and charges.pay_in_advance = false | ||
and charge_filters.deleted_at is null | ||
and charge_filter_values.deleted_at is null | ||
and billable_metric_filters.deleted_at is null | ||
group by | ||
billable_metrics.organization_id, | ||
billable_metrics.code, | ||
billable_metrics.aggregation_type, | ||
billable_metrics.field_name, | ||
charges.plan_id, | ||
charges.id, | ||
charge_filters.id |