Skip to content
Open
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 numerai/examples/crypto-python3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Provides us a working Python 3 environment.
FROM python:3.9
FROM python:3.13

# These are docker arguments that `numerai node deploy/test` will always pass into docker.
# They are then set in your environment so that numerapi can access them when uploading submissions.
Expand Down
2 changes: 1 addition & 1 deletion numerai/examples/signals-python3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Provides us a working Python 3 environment.
FROM python:3.9
FROM python:3.13

# These are docker arguments that `numerai node deploy/test` will always pass into docker.
# They are then set in your environment so that numerapi can access them when uploading submissions.
Expand Down
2 changes: 1 addition & 1 deletion numerai/examples/tournament-python3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Provides us a working Python 3 environment.
FROM python:3.9
FROM python:3.13

# These are docker arguments that `numerai node deploy/test` will always pass into docker.
# They are then set in your environment so that numerapi can access them when uploading submissions.
Expand Down
23 changes: 11 additions & 12 deletions numerai/terraform/aws/aws/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -179,21 +179,20 @@ resource "aws_batch_job_definition" "node" {
retry_strategy {
attempts = 2
evaluate_on_exit {
on_reason = "CannotInspectContainerError:*"
action = "RETRY"
# Should catch load and throttling related issues like:
# - CannotPullContainerError
# - CannotStartContainerError
# - CannotInspectContainerError
# - CannotCreateContainerError
# - ThrottlingException
on_status_reason = "Task failed to start"
action = "RETRY"
}
evaluate_on_exit {
on_reason = "CannotPullContainerError:*"
action = "RETRY"
}
evaluate_on_exit {
action = "RETRY"
on_reason = "CannotStartContainerError:*"
}
evaluate_on_exit {
action = "RETRY"
on_reason = "Task failed to start"
on_status_reason = "DockerTimeoutError*"
action = "RETRY"
}

evaluate_on_exit {
action = "EXIT"
on_reason = "*"
Expand Down
Loading