Valid 1z0-915-1 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-915-1 Exam! ExamDiscuss.com now offer the newest 1z0-915-1 exam dumps, the ExamDiscuss.com 1z0-915-1 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-915-1 dumps with Test Engine here:
The first query has an estimated cost of 100,000,000 and is offloaded to a HeatWave cluster for execution: SELECT flightno, departure, country FROM flight JOIN airport_geo ON 'from'=airport_id; The second query has an estimated cost of 10,000 and is NOT offloaded to the Heatwave cluster for execution: SELECT DISTINCT country FROM airport_geo ORDER BY country; Which two methods can offload the second query to the Heatwave cluster for execution? (Choose two.)
Correct Answer: A,B
To offload the second query to the HeatWave cluster for execution, you can use the following methods: * SET use_secondary_engine=FORCED(Answer A): This forces the use of the HeatWave secondary engine for query execution, regardless of the estimated cost. * SET secondary_engine_cost_threshold=1000(Answer B): This lowers the cost threshold for queries to be offloaded to the HeatWave cluster, allowing queries with lower estimated costs to be offloaded. Steps: * Before running the second query, executeSET use_secondary_engine=FORCED;to force the offloading of queries to HeatWave. * Alternatively, executeSET secondary_engine_cost_threshold=1000;to adjust the cost threshold, making the second query eligible for offloading.