Skip to content

Latest commit

 

History

History
84 lines (67 loc) · 4.67 KB

aws_batch.md

File metadata and controls

84 lines (67 loc) · 4.67 KB

AWS Batch

Lithops with AWS Batch as serverless batch compute backend.

Installation

  1. Install Amazon Web Services backend dependencies:
$ python3 -m pip install lithops[aws]
  1. Login to Amazon Web Services Console (or signup if you don't have an account)

  2. Navigate to IAM > Roles to create the ECS Task Execution Role. AWS provides a defualt role named ecsTaskExecutionRole, which can be used instead. If you want to create another role or it is missing, create a new role and add the following policies:

    • SecretsManagerReadWrite
    • AmazonEC2ContainerRegistryFullAccess
    • CloudWatchFullAccess
    • AmazonECSTaskExecutionRolePolicy
  3. Navigate to IAM > Roles to create the ECS Instance Role. AWS provides a defualt role named ecsInstanceRole, which can be used instead. If you want to create another role or it is missing, create a new role and add the following policy:

    • AmazonEC2ContainerServiceforEC2Role

Configuration

  1. Edit your lithops config and add the following keys:
aws:
    access_key_id : <AWS_ACCESS_KEY_ID>
    secret_access_key : <AWS_SECRET_ACCESS_KEY>
    account_id: <AWS_ACCOUNT_ID>

aws_batch:
    runtime : <RUNTIME_NAME>
    runtime_timeout: <RUNTIME_TIMEOUT>
    runtime_memory: <RUNTIME_MEMORY>
    worker_processes: <WORKER_PROCESSES>
    container_vcpus: <CONTAINER_VCPUS>
    execution_role: <EXECUTION_ROLE_ARN>
    instance_role: <INSTANCE_ROLE_ARN>
    region_name : <REGION_NAME>
    env_type: <COMPUTE_ENVIRONMENT_TYPE>
    env_max_cpus: <COMPUTE_ENVIRONMENT_MAX_CPUS>
    assign_public_ip: <ASSING_PUBLIC_IP_TO_CONTAINERS>
    subnets:
        - <SUBNET_ID_1>
        - <SUBNET_ID_2>
        - ...
    security_groups:
        - <SECURITY_GROUP_1>
        - <SECURITY_GROUP_2>
        - ...

Summary of configuration keys for AWS

AWS

Group Key Default Mandatory Additional info
aws access_key_id yes Account access key to AWS services. To find them, navigate to My Security Credentials and click Create Access Key if you don't already have one.
aws secret_access_key yes Account secret access key to AWS services. To find them, navigate to My Security Credentials and click Create Access Key if you don't already have one.
aws account_id no *This field will be used if present to retrieve the account ID instead of using AWS STS. The account ID is used to format full image names for container runtimes.

AWS Batch

Group Key Default Mandatory Additional info
aws_batch runtime default_runtime-v3X no Runtime name
aws_batch runtime_timeout 60 no Runtime timeout
aws_batch runtime_memory 512 no Runtime memory
aws_batch worker_processes 1 no Worker processes
aws_batch container_vcpus 1 no Number of vCPUs assigned to each task container. It can be different from worker_processes. Use it to run a task that uses multiple processes within a container.
aws_batch service_role None no Service role for AWS Batch. Leave empty for use a service-linked execution role. More info here
aws_batch execution_role yes ARN of the execution role used to execute AWS Batch tasks on ECS for Fargate environments
aws_batch instance_role yes ARN of the execution role used to execute AWS Batch tasks on ECS for EC2 environments
aws_batch region_name yes Region name (like us-east-1) where to deploy the ECS cluster
aws_batch env_type yes Compute environment type, one of: ["EC2", "SPOT", "FARGATE", "FARGATE_SPOT"]
aws_batch env_max_cpus yes Maximum total CPUs of the compute environment
aws_batch assign_public_ip true no Assing public IPs to ECS task containers. Set to true if the tasks are being deployed in a public subnet. Set to false when deploying on a private subnet.
aws_batch subnets yes List of subnets where to deploy the ECS task containers. Note that if you are using a private subnet, you can set assing_public_ip to false but make sure containers can reach other AWS services like ECR, Secrets service, etc., by, for example, using a NAT gateway. If you are using a public subnet you must set assing_public_ip to true
aws_batch security_groups yes List of Security groups to attach for ECS task containers. By default, you can use a security group that accepts all outbound traffic but blocks all inbound traffic.