Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MCS: Increase disk #2671

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading