Spring Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: pass65

CCA-500 Cloudera Certified Administrator for Apache Hadoop (CCAH) Questions and Answers

Questions 4

You are configuring your cluster to run HDFS and MapReducer v2 (MRv2) on YARN. Which two daemons needs to be installed on your cluster’s master nodes? (Choose two)

Options:

A.

HMaster

B.

ResourceManager

C.

TaskManager

D.

JobTracker

E.

NameNode

F.

DataNode

Buy Now
Questions 5

Which is the default scheduler in YARN?

Options:

A.

YARN doesn’t configure a default scheduler, you must first assign an appropriate scheduler class in yarn-site.xml

B.

Capacity Scheduler

C.

Fair Scheduler

D.

FIFO Scheduler

Buy Now
Questions 6

What does CDH packaging do on install to facilitate Kerberos security setup?

Options:

A.

Automatically configures permissions for log files at & MAPRED_LOG_DIR/userlogs

B.

Creates users for hdfs and mapreduce to facilitate role assignment

C.

Creates directories for temp, hdfs, and mapreduce with the correct permissions

D.

Creates a set of pre-configured Kerberos keytab files and their permissions

E.

Creates and configures your kdc with default cluster values

Buy Now
Questions 7

You want to node to only swap Hadoop daemon data from RAM to disk when absolutely necessary. What should you do?

Options:

A.

Delete the /dev/vmswap file on the node

B.

Delete the /etc/swap file on the node

C.

Set the ram.swap parameter to 0 in core-site.xml

D.

Set vm.swapfile file on the node

E.

Delete the /swapfile file on the node

Buy Now
Questions 8

Which two are features of Hadoop’s rack topology? (Choose two)

Options:

A.

Configuration of rack awareness is accomplished using a configuration file. You cannot use a rack topology script.

B.

Hadoop gives preference to intra-rack data transfer in order to conserve bandwidth

C.

Rack location is considered in the HDFS block placement policy

D.

HDFS is rack aware but MapReduce daemon are not

E.

Even for small clusters on a single rack, configuring rack awareness will improve performance

Buy Now
Questions 9

Assuming you’re not running HDFS Federation, what is the maximum number of NameNode daemons you should run on your cluster in order to avoid a “split-brain” scenario with your NameNode when running HDFS High Availability (HA) using Quorum-based storage?

Options:

A.

Two active NameNodes and two Standby NameNodes

B.

One active NameNode and one Standby NameNode

C.

Two active NameNodes and on Standby NameNode

D.

Unlimited. HDFS High Availability (HA) is designed to overcome limitations on the number of NameNodes you can deploy

Buy Now
Questions 10

You decide to create a cluster which runs HDFS in High Availability mode with automatic failover, using Quorum Storage. What is the purpose of ZooKeeper in such a configuration?

Options:

A.

It only keeps track of which NameNode is Active at any given time

B.

It monitors an NFS mount point and reports if the mount point disappears

C.

It both keeps track of which NameNode is Active at any given time, and manages the Edits file. Which is a log of changes to the HDFS filesystem

D.

If only manages the Edits file, which is log of changes to the HDFS filesystem

E.

Clients connect to ZooKeeper to determine which NameNode is Active

Buy Now
Questions 11

You are running a Hadoop cluster with a NameNode on host mynamenode. What are two ways to determine available HDFS space in your cluster?

Options:

A.

Run hdfs fs –du / and locate the DFS Remaining value

B.

Run hdfs dfsadmin –report and locate the DFS Remaining value

C.

Run hdfs dfs / and subtract NDFS Used from configured Capacity

D.

Connect to http://mynamenode:50070/dfshealth.jsp and locate the DFS remaining value

Buy Now
Questions 12

Your cluster is configured with HDFS and MapReduce version 2 (MRv2) on YARN. What is the result when you execute: hadoop jar SampleJar MyClass on a client machine?

Options:

A.

SampleJar.Jar is sent to the ApplicationMaster which allocates a container for SampleJar.Jar

B.

Sample.jar is placed in a temporary directory in HDFS

C.

SampleJar.jar is sent directly to the ResourceManager

D.

SampleJar.jar is serialized into an XML file which is submitted to the ApplicatoionMaster

Buy Now
Questions 13

Cluster Summary:

45 files and directories, 12 blocks = 57 total. Heap size is 15.31 MB/193.38MB(7%)

CCA-500 Question 13

Refer to the above screenshot.

You configure a Hadoop cluster with seven DataNodes and on of your monitoring UIs displays the details shown in the exhibit.

What does the this tell you?

Options:

A.

The DataNode JVM on one host is not active

B.

Because your under-replicated blocks count matches the Live Nodes, one node is dead, and your DFS Used % equals 0%, you can’t be certain that your cluster has all the data you’ve written it.

C.

Your cluster has lost all HDFS data which had bocks stored on the dead DatNode

D.

The HDFS cluster is in safe mode

Buy Now
Questions 14

You are migrating a cluster from MApReduce version 1 (MRv1) to MapReduce version 2 (MRv2) on YARN. You want to maintain your MRv1 TaskTracker slot capacities when you migrate. What should you do/

Options:

A.

Configure yarn.applicationmaster.resource.memory-mb and yarn.applicationmaster.resource.cpu-vcores so that ApplicationMaster container allocations match the capacity you require.

B.

You don’t need to configure or balance these properties in YARN as YARN dynamically balances resource management capabilities on your cluster

C.

Configure mapred.tasktracker.map.tasks.maximum and mapred.tasktracker.reduce.tasks.maximum ub yarn-site.xml to match your cluster’s capacity set by the yarn-scheduler.minimum-allocation

D.

Configure yarn.nodemanager.resource.memory-mb and yarn.nodemanager.resource.cpu-vcores to match the capacity you require under YARN for each NodeManager

Buy Now
Questions 15

Given:

CCA-500 Question 15

You want to clean up this list by removing jobs where the State is KILLED. What command you enter?

Options:

A.

Yarn application –refreshJobHistory

B.

Yarn application –kill application_1374638600275_0109

C.

Yarn rmadmin –refreshQueue

D.

Yarn rmadmin –kill application_1374638600275_0109

Buy Now
Questions 16

Which three basic configuration parameters must you set to migrate your cluster from MapReduce 1 (MRv1) to MapReduce V2 (MRv2)? (Choose three)

Options:

A.

Configure the NodeManager to enable MapReduce services on YARN by setting the following property in yarn-site.xml:

< name > yarn.nodemanager.hostname < /name >

< value > your_nodeManager_shuffle < /value >

B.

Configure the NodeManager hostname and enable node services on YARN by setting the following property in yarn-site.xml:

< name > yarn.nodemanager.hostname < /name >

< value > your_nodeManager_hostname < /value >

C.

Configure a default scheduler to run on YARN by setting the following property in mapred-site.xml:

< name > mapreduce.jobtracker.taskScheduler < /name >

< Value > org.apache.hadoop.mapred.JobQueueTaskScheduler < /value >

D.

Configure the number of map tasks per jon YARN by setting the following property in mapred:

< name > mapreduce.job.maps < /name >

< value > 2 < /value >

E.

Configure the ResourceManager hostname and enable node services on YARN by setting the following property in yarn-site.xml:

< name > yarn.resourcemanager.hostname < /name >

< value > your_resourceManager_hostname < /value >

F.

Configure MapReduce as a Framework running on YARN by setting the following property in mapred-site.xml:

< name > mapreduce.framework.name < /name >

< value > yarn < /value >

Buy Now
Questions 17

Your Hadoop cluster contains nodes in three racks. You have not configured the dfs.hosts property in the NameNode’s configuration file. What results?

Options:

A.

The NameNode will update the dfs.hosts property to include machines running the DataNode daemon on the next NameNode reboot or with the command dfsadmin –refreshNodes

B.

No new nodes can be added to the cluster until you specify them in the dfs.hosts file

C.

Any machine running the DataNode daemon can immediately join the cluster

D.

Presented with a blank dfs.hosts property, the NameNode will permit DataNodes specified in mapred.hosts to join the cluster

Buy Now
Questions 18

Which YARN process run as “container 0” of a submitted job and is responsible for resource qrequests?

Options:

A.

ApplicationManager

B.

JobTracker

C.

ApplicationMaster

D.

JobHistoryServer

E.

ResoureManager

F.

NodeManager

Buy Now
Exam Code: CCA-500
Exam Name: Cloudera Certified Administrator for Apache Hadoop (CCAH)
Last Update: Apr 30, 2026
Questions: 60

PDF + Testing Engine

$63.52  $181.49

Testing Engine

$50.57  $144.49
buy now CCA-500 testing engine

PDF (Q&A)

$43.57  $124.49
buy now CCA-500 pdf