Skip to content

Commit

Permalink
Merge pull request #51 from zooniverse/add_retry_and_success_wait_to_…
Browse files Browse the repository at this point in the history
…training_jobs

add retry constraints and wait_for_success as true for training jobs
  • Loading branch information
Tooyosi authored Sep 11, 2024
2 parents a74e2d2 + a2ec5fa commit 0e2836e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions bajor/batch/predictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def create_batch_job(job_id, manifest_url, pool_id):
copy_code_to_shared_dir = 'cp -Rf $AZ_BATCH_NODE_MOUNTS_DIR/$PREDICTIONS_CONTAINER_MOUNT_DIR/$CODE_DIR_PATH/* $AZ_BATCH_NODE_SHARED_DIR/'
job.job_preparation_task = batchmodels.JobPreparationTask(
command_line=f'/bin/bash -c \"set -ex; {create_results_dir}; {copy_code_to_shared_dir}\"',
constraints=batchmodels.TaskConstraints(max_task_retry_count=3),
#
# A busted preparation task means the main task won't launch...ever!
# and leave the node in a scaled state costing $$ ££
Expand Down
3 changes: 2 additions & 1 deletion bajor/batch/train_finetuning.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ def create_batch_job(job_id, manifest_container_path, pool_id):
setup_pytorch_kernel_cache_dir = 'mkdir -p $AZ_BATCH_NODE_SHARED_DIR/.cache/torch/kernels'
job.job_preparation_task = batchmodels.JobPreparationTask(
command_line=f'/bin/bash -c \"set -ex; {setup_pytorch_kernel_cache_dir}; {create_results_dir}; {copy_code_to_shared_dir}\"',
constraints=batchmodels.TaskConstraints(max_task_retry_count=3),
#
# A busted preparation task means the main task won't launch...ever!
# and leave the node in a scaled state costing $$ ££
Expand All @@ -123,7 +124,7 @@ def create_batch_job(job_id, manifest_container_path, pool_id):
# Short term: avoid waiting for this prep task to complete before starting the main task
# https://learn.microsoft.com/en-us/python/api/azure-batch/azure.batch.models.JobPreparationTask?view=azure-python#constructor
# https://learn.microsoft.com/en-us/azure/batch/batch-job-task-error-checking#job-preparation-tasks
wait_for_success=False)
wait_for_success=True)


# Job release task that runs after the job completes
Expand Down
3 changes: 2 additions & 1 deletion bajor/batch/train_from_scratch.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def create_batch_job(job_id, manifest_container_path, pool_id):
copy_code_to_shared_dir = 'cp -Rf $AZ_BATCH_NODE_MOUNTS_DIR/$TRAINING_CONTAINER_MOUNT_DIR/$CODE_DIR_PATH/* $AZ_BATCH_NODE_SHARED_DIR/'
job.job_preparation_task = batchmodels.JobPreparationTask(
command_line=f'/bin/bash -c \"set -ex; {create_results_dir}; {copy_code_to_shared_dir}\"',
constraints=batchmodels.TaskConstraints(max_task_retry_count=3),
#
# A busted preparation task means the main task won't launch...ever!
# and leave the node in a scaled state costing $$ ££
Expand All @@ -115,7 +116,7 @@ def create_batch_job(job_id, manifest_container_path, pool_id):
# Short term: avoid waiting for this prep task to complete before starting the main task
# https://learn.microsoft.com/en-us/python/api/azure-batch/azure.batch.models.JobPreparationTask?view=azure-python#constructor
# https://learn.microsoft.com/en-us/azure/batch/batch-job-task-error-checking#job-preparation-tasks
wait_for_success=False)
wait_for_success=True)


# Job release task that runs after the job completes
Expand Down

0 comments on commit 0e2836e

Please sign in to comment.