What are two reasons that a MapReduce job is not run when the following command is executed in Hive? (Choose two.)
hive> create view v_consolidated_credit_products as select
hcd.customer_id, hcd.credit_card_limits, hcd.credit_balance, hmda.n_mortgages, hmda.mortgage_amount
from mortgages_department_agg hmda join credit_department hcd on
hcd.customer_id=hmda.customer_id;
OK
Time taken: 0.316 seconds
Select all that apply, then click Submit answer.
-
○
The MapReduce job is run when the view is accessed.
-
○
MapReduce is run; the command output is incorrect.
-
○
MapReduce is not run with Hive. Hive bypasses the MapReduce layer.
-
○
A view only defines the metadata in the RDBMS store.
-
○
MapReduce is run in the background.