Which language is used in oozie to define MapReduce workflow 1. Java 2. XML 3. Pig Latin 4. None of the above
Correct Answer : 2
Question :
Select the correct statement? 1. In oozie workflow, all the MapReduce jobs can run in sequence only 2. Jobs can run parallel as well as in sequence 3. One Job can wait for another job to finish 4. All of the above 5. 2 and 3
Correct Answer : 5
Oozie is a system for describing the workflow of a job, where that job may contain a set of map reduce jobs, pig scripts, fs operations etc and supports fork and joining of the data flow.
It doesnt however allow you to stream the input of one MR job as the input to another - the map-reduce action in oozie still requires an output format of some type, typically a File based on, so your output from job 1 will still be serialized via HDFS, before being processed by job 2.
Oozie can run jobs sequentially (one after the other) and in parallel (multiple at a time)
Question :
What is the benefit of the Hadoop framework 1. Can process PetaBytes of data volume 2. Can store PetaBytes of Structured and Unstructured data 3. data can be imported and exported from RDBMS 4. All of the above