Skip to content

Commit

Permalink
MCS: Increase size of disk
Browse files Browse the repository at this point in the history
  • Loading branch information
ravenac95 committed Dec 19, 2024
1 parent 3cd8faa commit 9751124
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ops/tf-modules/warehouse-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ locals {
min_count = 0
max_count = 50
local_ssd_count = 0
local_ssd_ephemeral_storage_count = 2
local_ssd_ephemeral_storage_count = 3
spot = true
disk_size_gb = 100
disk_type = "pd-standard"
Expand Down
4 changes: 2 additions & 2 deletions warehouse/metrics_tools/compute/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async def _handle_query_job_submit_request(

total = len(tasks)
if total != input.batch_count():
self.logger.warning("job[{job_id}] batch count mismatch")
self.logger.warning(f"job[{job_id}] batch count mismatch")

exceptions = []
cancellations = []
Expand All @@ -201,7 +201,7 @@ async def _handle_query_job_submit_request(
raise JobFailed(job_id, len(exceptions), exceptions, cancellations)

# Import the final result into the database
self.logger.info("job[{job_id}]: importing final result into the database")
self.logger.info(f"job[{job_id}]: importing final result into the database")
await self.import_adapter.import_reference(calculation_export, final_export)

self.logger.debug(f"job[{job_id}]: notifying job completed")
Expand Down

0 comments on commit 9751124

Please sign in to comment.