Skip to content

Commit 6f9aab6

Browse files
myersCodybacciottilcouzens
authored
[COST-5861] OCP on AWS managed population (#5484)
* [COST-5861] OCP on AWS managed population Co-authored-by: Lucas Bacciotti <[email protected]> Co-authored-by: Luke Couzens <[email protected]>
1 parent e0670f3 commit 6f9aab6

9 files changed

+1446
-287
lines changed

koku/masu/database/aws_report_db_accessor.py

+32-32
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import pkgutil
99
import uuid
1010
from typing import Any
11-
from typing import List
1211

1312
from dateutil.parser import parse
1413
from django.db import connection
@@ -35,7 +34,7 @@
3534
from reporting.provider.all.models import TagMapping
3635
from reporting.provider.aws.models import AWSCostEntryBill
3736
from reporting.provider.aws.models import AWSCostEntryLineItemDailySummary
38-
from reporting.provider.aws.models import TRINO_MANAGED_OCP_AWS_DAILY_TABLE
37+
from reporting.provider.aws.models import TRINO_OCP_AWS_DAILY_SUMMARY_TABLE
3938
from reporting.provider.aws.models import UI_SUMMARY_TABLES
4039
from reporting.provider.aws.openshift.models import UI_SUMMARY_TABLES as OCPAWS_UI_SUMMARY_TABLES
4140

@@ -207,7 +206,7 @@ def delete_ocp_on_aws_hive_partition_by_day(
207206
)
208207
)
209208
for day in days:
210-
if table == TRINO_MANAGED_OCP_AWS_DAILY_TABLE:
209+
if table == TRINO_OCP_AWS_DAILY_SUMMARY_TABLE:
211210
column_name = "source"
212211
else:
213212
column_name = "aws_source"
@@ -493,48 +492,49 @@ def populate_ec2_compute_summary_table_trino(self, source_uuid, start_date, bill
493492

494493
self._execute_trino_raw_sql_query(sql, sql_params=sql_params, log_ref=f"{table_name}.sql")
495494

496-
def verify_populate_ocp_on_cloud_daily_trino(self, verification_tags: List[str], sql_metadata: SummarySqlMetadata):
497-
"""
498-
Verify the managed trino table population went successfully.
499-
"""
500-
params = sql_metadata.build_params(["schema", "cloud_provider_uuid", "year", "month"])
501-
params["matched_tag_array"] = verification_tags
502-
verification_sql = pkgutil.get_data("masu.database", "trino_sql/verify/managed_ocp_on_aws_verification.sql")
503-
verification_sql = verification_sql.decode("utf-8")
504-
LOG.info(log_json(msg="running verification for managed OCP on AWS daily SQL", **params))
505-
result = self._execute_trino_multipart_sql_query(verification_sql, bind_params=params)
506-
if False in result[0]:
507-
LOG.error(log_json(msg="Verification failed", **params))
508-
else:
509-
LOG.info(log_json(msg="Verification successful", **params))
510-
511495
def populate_ocp_on_cloud_daily_trino(self, sql_metadata: SummarySqlMetadata) -> Any:
512496
"""Populate the managed_aws_openshift_daily trino table for OCP on AWS.
513497
Args:
514498
sql_metadata: object of SummarySqlMetadata class
515499
Returns
516500
(None)
517501
"""
518-
verification_tags = []
502+
managed_path = "trino_sql/aws/openshift/populate_daily_summary"
503+
prepare_sql, prepare_params = sql_metadata.prepare_template(
504+
f"{managed_path}/0_prepare_daily_summary_tables.sql"
505+
)
506+
LOG.info(log_json(msg="Preparing tables for OCP on AWS flow", **prepare_params))
507+
self._execute_trino_multipart_sql_query(prepare_sql, bind_params=prepare_params)
519508
for ocp_provider_uuid in sql_metadata.ocp_provider_uuids:
520-
matched_tags_result = self.find_openshift_keys_expected_values(ocp_provider_uuid, sql_metadata)
521-
verification_tags.extend(matched_tags_result)
522509
self.delete_ocp_on_aws_hive_partition_by_day(
523510
sql_metadata.days_tup,
524511
sql_metadata.cloud_provider_uuid,
525512
ocp_provider_uuid,
526513
sql_metadata.year,
527514
sql_metadata.month,
528-
TRINO_MANAGED_OCP_AWS_DAILY_TABLE,
515+
TRINO_OCP_AWS_DAILY_SUMMARY_TABLE,
529516
)
530-
summary_sql_params = sql_metadata.build_params(
531-
["schema", "start_date", "year", "month", "days", "end_date", "cloud_provider_uuid"]
517+
# Resource Matching
518+
resource_matching_sql, resource_matching_params = sql_metadata.prepare_template(
519+
f"{managed_path}/1_resource_matching_by_cluster.sql",
520+
{
521+
"ocp_provider_uuid": ocp_provider_uuid,
522+
"matched_tag_array": self.find_openshift_keys_expected_values(ocp_provider_uuid, sql_metadata),
523+
},
524+
)
525+
self._execute_trino_multipart_sql_query(resource_matching_sql, bind_params=resource_matching_params)
526+
# Data Transformations for Daily Summary
527+
daily_summary_sql, daily_summary_params = sql_metadata.prepare_template(
528+
f"{managed_path}/2_summarize_data_by_cluster.sql",
529+
{
530+
**sql_metadata.build_cost_model_params(ocp_provider_uuid),
531+
**{
532+
"ocp_provider_uuid": ocp_provider_uuid,
533+
"unattributed_storage": is_feature_unattributed_storage_enabled_aws(self.schema),
534+
},
535+
},
536+
)
537+
LOG.info(
538+
log_json(msg="executing data transformations for ocp on azure daily summary", **daily_summary_params)
532539
)
533-
summary_sql_params["ocp_source_uuid"] = ocp_provider_uuid
534-
summary_sql_params["matched_tag_array"] = matched_tags_result
535-
LOG.info(log_json(msg="running managed OCP on AWS daily SQL", **summary_sql_params))
536-
summary_sql = pkgutil.get_data("masu.database", "trino_sql/aws/openshift/managed_aws_openshift_daily.sql")
537-
summary_sql = summary_sql.decode("utf-8")
538-
self._execute_trino_multipart_sql_query(summary_sql, bind_params=summary_sql_params)
539-
verification_tags = list(dict.fromkeys(verification_tags))
540-
self.verify_populate_ocp_on_cloud_daily_trino(verification_tags, sql_metadata)
540+
self._execute_trino_multipart_sql_query(daily_summary_sql, bind_params=daily_summary_params)

koku/masu/database/trino_sql/aws/openshift/managed_aws_openshift_daily.sql

-196
This file was deleted.

0 commit comments

Comments
 (0)