Batch Flashcards

1
Q

What is Batch?

A

Enables you to run batch computing workloads on the AWS Cloud. It is a regional service that simplifies running batch jobs across multiple AZs within a region.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Features of Batch

A

-Batch manages compute environments and job queues, allowing you to easily run thousands of jobs of any scale using EC2 and EC2 Spot.
-Batch chooses where to run the jobs, launching additional AWS capacity if needed.
-Batch carefully monitors the progress of your jobs. When capacity is no longer needed, it will be removed.
-Batch provides the ability to submit jobs that are part of a pipeline or workflow, enabling you to express any interdependencies that exist between them as you submit jobs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Batch components?

A

-Jobs
-Job Definitions
-Job Queues
-Compute Environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are Jobs?

A

A unit of work (such as a shell script, a Linux executable, or a Docker container image) that you submit to Batch.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do Jobs reference other jobs?

A

Jobs can reference other jobs by name or by ID, and can be dependent on the successful completion of other jobs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How many job types are there and what are they?

A

Single for single Job
Array for array Job of size 2 to 10,000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Overview of an Array Job.

A

An array job shares common job parameters, such as the job definition, vCPUs, and memory. It runs as a collection of related, yet separate, basic jobs that may be distributed across multiple hosts and may run concurrently.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are Multi-node Parallel Jobs?

A

Multi-node parallel jobs enable you to run single large-scale, tightly coupled, high-performance computing applications and distributed GPU model training jobs that span multiple Amazon EC2 instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Features/Facts of Batch with Multi-node Parallel Jobs?

A

-Batch lets you specify up to five distinct node groups for each job. Each group can have its own container images, commands, environment variables, and so on.
-Each multi-node parallel job contains a main node, which is launched first. After the main node is up, the child nodes are launched and started. If the main node exits, the job is considered finished, and the child nodes are stopped.
-Not supported on computing environments that use Spot Instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a job dependency and how many dependencies exist per job?

A

-A job may have up to 20 dependencies.
-fFor Job depends on, enter the job IDs for any jobs that must finish before this job starts.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Array Jobs only For N-To-N Job Dependencies.

A

(Array jobs only) For N-To-N job dependencies, specify one or more job IDs for any array of jobs for which each child job index of this job should depend on the corresponding child index job of the dependency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

(Array jobs only) Run children sequentially

A

(Array jobs only) Run children sequentially creates a SEQUENTIAL dependency for the current array job. This ensures that each child index job waits for its earlier sibling to finish.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How many states are there?

A

7

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the states?

A

-SUBMITTED – a job that has been submitted to the queue, and has not yet been evaluated by the scheduler.
-PENDING – a job that resides in the queue and is not yet able to run due to a dependency on another job or resource.
-RUNNABLE – a job that resides in the queue has no outstanding dependencies and is, therefore, ready to be scheduled to a host. Jobs in this state are started as soon as sufficient resources are available in one of the computing environments that are mapped to the job’s queue.
-STARTING – jobs have been scheduled to a host and the relevant container initiation operations are underway.
-RUNNING – the job is running as a container job on an Amazon ECS container instance within a computing environment. When the job’s container exits, the process exit code determines whether the job succeeded or failed. An exit code of 0 indicates success, and any non-zero exit code indicates failure.
-SUCCEEDED – the job has successfully completed with an exit code of 0. The job state for SUCCEEDED jobs is persisted for 24 hours.
-FAILED – the job has failed all available attempts. The job state for FAILED jobs is persisted for 24 hours.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What can you do with Jobs that fail?

A

You can apply a retry strategy to your jobs and job definitions that allows failed jobs to be automatically retried.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What could you do with a job that runs longer than it should?

A

You can configure a timeout duration for your jobs so that if a job runs longer than that, Batch terminates the job. If a job is terminated for exceeding the timeout duration, it is not retried. If it fails on its own, then it can retry if retries are enabled, and the timeout countdown is started over for the new attempt.

17
Q

Job Definitions?

A

Specifies how jobs are to be run.

18
Q

What can Job Definitions contain?

A

-an IAM role to provide programmatic access to other AWS resources.
-memory and CPU requirements for the job.
-controls for container properties, environment variables, and mount points for persistent storage.

19
Q

Job queues

A

This is where a Batch job resides until it is scheduled onto a computing environment.

20
Q

How many compute environments can you associate with a Job Queue?

A

You can associate one or more compute environments with a job queue.

21
Q

How can you make sure higher priority jobs have the highest priority?

A

You can assign priority values for the compute environments and even across job queues themselves.

22
Q

Batch Scheduler

A

The Batch Scheduler evaluates when, where, and how to run jobs that have been submitted to a job queue. Jobs run in approximately the order in which they are submitted as long as all dependencies on other jobs have been met

23
Q

Batch Compute Environment

A

A set of managed or unmanaged compute resources (such as EC2 instances) that are used to run jobs. Compute environments contain the Amazon ECS container instances that are used to run containerized batch jobs. A given compute environment can be mapped to one or many job queues.

24
Q

Batch Managed Compute Environment

A

Batch manages the capacity and instance types of the compute resources within the environment, based on the compute resource specification that you define when you create the computing environment. You can choose to use EC2 On-Demand Instances or Spot Instances in your managed compute environment. ECS container instances are launched into the VPC and subnets that you specify when you create the computing environment.

25
Q

Batch Unmanaged Compute Environment

A

You manage your own computing resources in this environment. After you have created your unmanaged compute environment, use the DescribeComputeEnvironments API operation to view the compute environment details and find the ECS cluster that is associated with the environment, and manually launch your container instances into that cluster.

26
Q

By default, what permissions do users have with Batch?

A

By default, IAM users don’t have permission to create or modify AWS Batch resources or perform tasks using the AWS Batch API.

27
Q

How can you manage access to Batch?

A

Take advantage of IAM policies, roles, and permissions. You can control access to AWS Batch resources based on the tag values.

28
Q

How can you monitor Batch?

A

You can use the AWS Batch event stream for CloudWatch Events to receive near real-time notifications regarding the current state of jobs that have been submitted to your job queues.

29
Q

True/False. Events from the AWS Batch event stream are ensured to be delivered at least one time.

A

True.

30
Q

True/False. CloudTrail captures all API calls for AWS Batch as events.

A

True.

31
Q

How is Batch charged?

A

There is no additional charge for AWS Batch. You pay for resources you create to store and run your application.