|
8 | 8 | import pkgutil
|
9 | 9 | import uuid
|
10 | 10 | from typing import Any
|
11 |
| -from typing import List |
12 | 11 |
|
13 | 12 | from dateutil.parser import parse
|
14 | 13 | from django.db import connection
|
|
35 | 34 | from reporting.provider.all.models import TagMapping
|
36 | 35 | from reporting.provider.aws.models import AWSCostEntryBill
|
37 | 36 | 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 |
39 | 38 | from reporting.provider.aws.models import UI_SUMMARY_TABLES
|
40 | 39 | from reporting.provider.aws.openshift.models import UI_SUMMARY_TABLES as OCPAWS_UI_SUMMARY_TABLES
|
41 | 40 |
|
@@ -207,7 +206,7 @@ def delete_ocp_on_aws_hive_partition_by_day(
|
207 | 206 | )
|
208 | 207 | )
|
209 | 208 | for day in days:
|
210 |
| - if table == TRINO_MANAGED_OCP_AWS_DAILY_TABLE: |
| 209 | + if table == TRINO_OCP_AWS_DAILY_SUMMARY_TABLE: |
211 | 210 | column_name = "source"
|
212 | 211 | else:
|
213 | 212 | column_name = "aws_source"
|
@@ -493,48 +492,49 @@ def populate_ec2_compute_summary_table_trino(self, source_uuid, start_date, bill
|
493 | 492 |
|
494 | 493 | self._execute_trino_raw_sql_query(sql, sql_params=sql_params, log_ref=f"{table_name}.sql")
|
495 | 494 |
|
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 |
| - |
511 | 495 | def populate_ocp_on_cloud_daily_trino(self, sql_metadata: SummarySqlMetadata) -> Any:
|
512 | 496 | """Populate the managed_aws_openshift_daily trino table for OCP on AWS.
|
513 | 497 | Args:
|
514 | 498 | sql_metadata: object of SummarySqlMetadata class
|
515 | 499 | Returns
|
516 | 500 | (None)
|
517 | 501 | """
|
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) |
519 | 508 | 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) |
522 | 509 | self.delete_ocp_on_aws_hive_partition_by_day(
|
523 | 510 | sql_metadata.days_tup,
|
524 | 511 | sql_metadata.cloud_provider_uuid,
|
525 | 512 | ocp_provider_uuid,
|
526 | 513 | sql_metadata.year,
|
527 | 514 | sql_metadata.month,
|
528 |
| - TRINO_MANAGED_OCP_AWS_DAILY_TABLE, |
| 515 | + TRINO_OCP_AWS_DAILY_SUMMARY_TABLE, |
529 | 516 | )
|
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) |
532 | 539 | )
|
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) |
0 commit comments