Member since
03-06-2017
2
Posts
0
Kudos Received
0
Solutions
05-03-2017
10:42 AM
Try creating a table in hive and then use df.write.mode("overwrite").saveAsTable("schema.table_name")
... View more
03-06-2017
06:50 AM
Simply set a propert in oozie workflow ie. hadoop property "MAPRED>JOB>QUEUENAME" value would be "YOUR_QUEUE_NAME". this worked for me my oozie workflow is being submitted to a particular QUEUE now. Cheers. , I also had the similar requirement to submit the job in a particular queue. We simply need to change at one place that is oozie workflow settings. Add one hadoop property there as "MAPRED.JOB.QUEUENAME" and Value is "YOUR_QUEUE_NAME". By this way workflow is submitted to defined queue.
... View more