In which of the below scenerio Hadoop framework should not be used 1. Working with small and structured datasets 2. If there is a requirement of transaction 3. For Structured analytics 4. 1 and 2 5. 1 , 2 and 3
Correct Answer : 4
Hadoop is not a good fit for Small Data sets and wherever is a need for Transactions e.g. OLTP
Refer HadoopExam.com Recorded Training Module : 1
Question :
DistCp tool is used for 1. Tool used for large inter or intra cluster copying 2. Uses MapReduce for distribution 3. 1 and 2 are correct 4. None of the above
Correct Answer : 3
DistCp (distributed copy) is a tool used for large inter/intra-cluster copying. It uses Map/Reduce to effect its distribution, error handling and recovery, and reporting. It expands a list of files and directories into input to map tasks, each of which will copy a partition of the files specified in the source list. Its Map/Reduce pedigree has endowed it with some quirks in both its semantics and execution. The purpose of this document is to offer guidance for common tasks and to elucidate its model.
Refer HadoopExam.com Recorded Training Module : 2
Question :
Which of the following data format can be analyzed by Hadoop
1. XML 2. CSV 3. JSON 4. Text 5. All of the above
Correct Answer : 5
Hadoop is good fit for analyzing structured (Text,CSV,XML) Semi-structured (email,blogs) and unstructured data (Audio,Video)
Refer HadoopExam.com Recorded Training Module : 1 and 2