. . . . . . . . operator is used to review the schema of a relation.
A. DUMP
B. DESCRIBE
C. STORE
D. EXPLAIN
Select an option to see the answer and solution.
Point out the correct statement.
A. During the testing phase of your implementation, you can use LOAD to display results to your terminal screen
B. You can view outer relations as well as relations defined in a nested FOREACH statement
C. Hadoop properties are interpreted by Pig
D. None of the mentioned
Select an option to see the answer and solution.
Which of the following operator is used to view the map reduce execution plans?
A. DUMP
B. DESCRIBE
C. STORE
D. EXPLAIN
Select an option to see the answer and solution.
. . . . . . . . operator is used to view the step-by-step execution of a series of statements.
A. ILLUSTRATE
B. DESCRIBE
C. STORE
D. EXPLAIN
Select an option to see the answer and solution.
Point out the wrong statement.
A. ILLUSTRATE operator is used to review how data is transformed through a sequence of Pig Latin statements
B. ILLUSTRATE is based on an example generator
C. Several new private classes make it harder for external tools such as Oozie to integrate with Pig statistics
D. None of the mentioned
Select an option to see the answer and solution.
. . . . . . . . is a framework for collecting and storing script-level statistics for Pig Latin.
A. Pig Stats
B. PStatistics
C. Pig Statistics
D. None of the mentioned
Select an option to see the answer and solution.
The . . . . . . . . class mimics the behavior of the Main class but gives users a statistics object back.
A. PigRun
B. PigRunner
C. RunnerPig
D. None of the mentioned
Select an option to see the answer and solution.
. . . . . . . . is a simple xUnit framework that enables you to easily test your Pig scripts.
A. PigUnit
B. PigXUnit
C. PigUnitX
D. All of the mentioned
Select an option to see the answer and solution.
Which of the following will compile the Pigunit?
A. $pig_trunk ant pigunit-jar
B. $pig_tr ant pigunit-jar
C. $pig_ ant pigunit-jar
D. None of the mentioned
Select an option to see the answer and solution.
PigUnit runs in Pig's . . . . . . . . mode by default.
A. local
B. tez
C. mapreduce
D. none of the mentioned
Select an option to see the answer and solution.
. . . . . . . . abstract class has three main methods for loading data and for most use cases it would suffice to extend it.
A. Load
B. LoadFunc
C. FuncLoad
D. None of the mentioned
Select an option to see the answer and solution.
Point out the correct statement.
A. LoadMeta has methods to convert byte arrays to specific types
B. The Pig load/store API is aligned with Hadoop InputFormat class only
C. LoadPush has methods to push operations from Pig runtime into loader implementations
D. All of the mentioned
Select an option to see the answer and solution.
Which of the following has methods to deal with metadata?
A. LoadPushDown
B. LoadMetadata
C. LoadCaster
D. All of the mentioned
Select an option to see the answer and solution.
. . . . . . . . method will be called by Pig both in the front end and back end to pass a unique signature to the Loader.
A. relativeToAbsolutePath()
B. setUdfContextSignature()
C. getCacheFiles()
D. getShipFiles()
Select an option to see the answer and solution.
Point out the wrong statement.
A. The load/store UDFs control how data goes into Pig and comes out of Pig.
B. LoadCaster has methods to convert byte arrays to specific types.
C. The meaning of getNext() has changed and is called by Pig runtime to get the last tuple in the data
D. None of the mentioned
Select an option to see the answer and solution.
. . . . . . . . return a list of hdfs files to ship to distributed cache.
A. relativeToAbsolutePath()
B. setUdfContextSignature()
C. getCacheFiles()
D. getShipFiles()
Select an option to see the answer and solution.
The loader should use . . . . . . . . method to communicate the load information to the underlying InputFormat.
A. relativeToAbsolutePath()
B. setUdfContextSignature()
C. getCacheFiles()
D. setLocation()
Select an option to see the answer and solution.
. . . . . . . . method enables the RecordReader associated with the InputFormat provided by the LoadFunc is passed to the LoadFunc.
A. getNext()
B. relativeToAbsolutePath()
C. prepareToRead()
D. all of the mentioned
Select an option to see the answer and solution.
. . . . . . . . method tells LoadFunc which fields are required in the Pig script.
A. pushProjection()
B. relativeToAbsolutePath()
C. prepareToRead()
D. none of the mentioned
Select an option to see the answer and solution.
A loader implementation should implement . . . . . . . . if casts (implicit or explicit) from DataByteArray fields to other types need to be supported.
A. LoadPushDown
B. LoadMetadata
C. LoadCaster
D. All of the mentioned
Select an option to see the answer and solution.