Design an advanced application Flashcards

1
Q

Create compute-intensive applications

A

1) Using Azure in a high-performance computing environment
2) Using Azure Batch
3) Understanding Azure Batch Apps
4) Implementing the Competing Consumers pattern

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

Using Azure in a high-performance computing environment

A

1) Azure’s A8, A9, A10, and A11 virtual machine (VM) sizes

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

A8, A9

A

1) equipped with two network adapters;
2) one connects to a 10 Gbps Ethernet backbone for accessing external services and the Internet, and
3) another connects to a 32 Gbps backbone (through Mellanox QDR InfiniBand) with Remote Direct Memory Access (RDMA) capability for instance communication

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

A10 and A11 instances

A

are designed for so-called parametric, or embarrassingly parallel, applications that don’t require constant, low-latency communication among nodes.

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

Intel MPI Library

A

1) designed to boost the performance of applications running on clusters that are based on Intel architecture.
2) It is widely used by many HPC applications and takes advantages of Azure’s low-latency network and RDMA capabilities.

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

Using Azure Batch

A

1) If you don’t want the trouble of managing a compute cluster yourself
2) Using Batch, you can schedule and manage large-scale parallel workloads on Azure-managed compute resources without the need to manage any infrastructure details.

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

Preparing a Batch Application

A

1) With Batch Apps, the repeatable job is called a Batch Application. You create a Batch Application by submitting two packages to Batch, an Application Image and a Cloud Assembly
2) When you have the packages ready, you can create a new Batch Application on the Batch Apps portal, and then schedule jobs on this application.

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

Application Image

A

This is a zip file that contains application executables along with all support files.

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

Cloud Assembly

A

This is a zip file that contains implementations of several methods, including a method to break down the job into tasks, and a method to invoke application executables.

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

Competing Consumers pattern

A

1) implement a simple parallel task execution engine.
2) one or more task creators generate tasks to a common task queue.
2) That queue is monitored by one or many task processors. These processors compete with one another for new tasks

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

Competing Consumers pattern desirable characteristics

A

1) Scaling-out as needed
2) Failover
3) Hybrid compute
4) Dynamic load balancing

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