Question : In a MapReduce job with map tasks, how many map task attempts will there be? A. It depends on the number of reduces in the job. 1. Between 500 and 1000. 2. At most 500. 3. At least 500. 4. Exactly 500.
Correct Answer : Get Lastest Questions and Answer : Explanation: Task attempt is a particular instance of an attempt to execute a task - There will be at least as many task attempts as there are tasks - If a task attempt fails, another will be started by the JobTracker - Speculative execution can also result in more task attempts than completed tasks
Question : Which HDFS command uploads a local file X into an existing HDFS directory Y? 1. hadoop scp X Y 2. hadoop fs -localPut X Y 3. hadoop fs-put X Y 4. hadoop fs -get X Y
Copy single src, or multiple srcs from local file system to the destination file system. Also reads input from stdin and writes to destination file system.
Question : Which one of the following files is required in every Oozie Workflow application? 1. job.properties 2. Config-default.xml 3. Workflow.xml 4. Oozie.xml
1. Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The programmer can configure in the job what percentage of the intermediate data should arrive before the reduce method begins. 2. Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The reduce method is called only after all intermediate data has been copied and sorted. 3. Access Mostly Uused Products by 50000+ Subscribers optimal performance for map-only or reduce-only jobs. 4. Reducers start copying intermediate key-value pairs from each Mapper as soon as it has completed. The reduce method is called as soon as the intermediate key-value pairs start to arrive.