Amazon EMR | General Flashcards

1
Q

What is Amazon EMR?

General

Amazon EMR | Analytics

A

Amazon EMR is a web service that enables businesses, researchers, data analysts, and developers to easily and cost-effectively process vast amounts of data. It utilizes a hosted Hadoop framework running on the web-scale infrastructure of Amazon Elastic Compute Cloud (Amazon EC2) and Amazon Simple Storage Service (Amazon S3).

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

What can I do with Amazon EMR?

General

Amazon EMR | Analytics

A

Using Amazon EMR, you can instantly provision as much or as little capacity as you like to perform data-intensive tasks for applications such as web indexing, data mining, log file analysis, machine learning, financial analysis, scientific simulation, and bioinformatics research. Amazon EMR lets you focus on crunching or analyzing your data without having to worry about time-consuming set-up, management or tuning of Hadoop clusters or the compute capacity upon which they sit.

Amazon EMR is ideal for problems that necessitate the fast and efficient processing of large amounts of data. The web service interfaces allow you to build processing workflows, and programmatically monitor progress of running clusters. In addition, you can use the simple web interface of the AWS Management Console to launch your clusters and monitor processing-intensive computation on clusters of Amazon EC2 instances.

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

Who can use Amazon EMR?

General

Amazon EMR | Analytics

A

Anyone who requires simple access to powerful data analysis can use Amazon EMR. You don’t need any software development experience to experiment with several sample applications available in the Developer Guide and on the AWS Big Data Blog.

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

What can I do with Amazon EMR that I could not do before?

General

Amazon EMR | Analytics

A

Amazon EMR significantly reduces the complexity of the time-consuming set-up, management. and tuning of Hadoop clusters or the compute capacity upon which they sit. You can instantly spin up large Hadoop clusters which will start processing within minutes, not hours or days. When your cluster finishes its processing, unless you specify otherwise, it will be automatically terminated so you are not paying for resources you no longer need.

Using this service you can quickly perform data-intensive tasks for applications such as web indexing, data mining, log file analysis, machine learning, financial analysis, scientific simulation, and bioinformatics research.

As a software developer, you can also develop and run your own more sophisticated applications, allowing you to add functionality such as scheduling, workflows, monitoring, or other features.

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

What is the data processing engine behind Amazon EMR?

General

Amazon EMR | Analytics

A

Amazon EMR uses Apache Hadoop as its distributed data processing engine. Hadoop is an open source, Java software framework that supports data-intensive distributed applications running on large clusters of commodity hardware. Hadoop implements a programming model named “MapReduce,” where the data is divided into many small fragments of work, each of which may be executed on any node in the cluster. This framework has been widely used by developers, enterprises and startups and has proven to be a reliable software platform for processing up to petabytes of data on clusters of thousands of commodity machines.

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

What is an Amazon EMR cluster?

General

Amazon EMR | Analytics

A

Amazon EMR historically referred to an Amazon EMR cluster (and all processing steps assigned to it) as a “cluster”. Every cluster or cluster has a unique identifier that starts with “j-“.

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

What is a cluster step?

General

Amazon EMR | Analytics

A

A cluster step is a user-defined unit of processing, mapping roughly to one algorithm that manipulates the data. A step is a Hadoop MapReduce application implemented as a Java jar or a streaming program written in Java, Ruby, Perl, Python, PHP, R, or C++. For example, to count the frequency with which words appear in a document, and output them sorted by the count, the first step would be a MapReduce application which counts the occurrences of each word, and the second step would be a MapReduce application which sorts the output from the first step based on the counts.

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

What are different cluster states?

General

Amazon EMR | Analytics

A

STARTING – The cluster provisions, starts, and configures EC2 instances.

BOOTSTRAPPING – Bootstrap actions are being executed on the cluster.

RUNNING – A step for the cluster is currently being run.

WAITING – The cluster is currently active, but has no steps to run.

TERMINATING - The cluster is in the process of shutting down.

TERMINATED - The cluster was shut down without error.

TERMINATED_WITH_ERRORS - The cluster was shut down with errors.

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