<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Issue with: Hive Action - Oozie in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12246#M1748</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use hive with Oozie using hive action. The Oozie workflow is supposed to load data from one Hive table to another. I have a table foo in Hive and it is supposed to load data into table "test".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Cloudera VM with Hadoop 2.0.0-cdh4.4.0.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I run the workflow using below command:&lt;/P&gt;&lt;P&gt;[cloudera@localhost oozie-3.3.2+92]$ oozie job -oozie &lt;A href="http://localhost:11000/oozie" target="_blank"&gt;http://localhost:11000/oozie&lt;/A&gt; -config examples/apps/hive/job.properties -run&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When I go to the JobTracker log file it says: Table not found 'foo'. Any help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;cat script.q:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;REATE EXTERNAL TABLE test (&lt;BR /&gt;id int,&lt;BR /&gt;name string&lt;BR /&gt;)&lt;BR /&gt;ROW FORMAT DELIMITED&lt;BR /&gt;FIELDS TERMINATED BY '\t'&lt;BR /&gt;STORED AS TEXTFILE&lt;BR /&gt;LOCATION&lt;BR /&gt;'/user/cloudera/test';&lt;/P&gt;&lt;P&gt;INSERT OVERWRITE table test SELECT * FROM foo;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cat job.properties:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;nameNode=hdfs://localhost.localdomain:8020&lt;BR /&gt;jobTracker=localhost.localdomain:8021&lt;BR /&gt;queueName=default&lt;BR /&gt;examplesRoot=examples&lt;/P&gt;&lt;P&gt;oozie.use.system.libpath=true&lt;/P&gt;&lt;P&gt;oozie.wf.application.path=${nameNode}/user/${user.name}/${examplesRoot}/apps/hive&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cat workflow.xml:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;workflow-app xmlns="uri:oozie:workflow:0.2" name="hive-wf"&amp;gt;&lt;BR /&gt;&amp;lt;start to="hive-node"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;action name="hive-node"&amp;gt;&lt;BR /&gt;&amp;lt;hive xmlns="uri:oozie:hive-action:0.2"&amp;gt;&lt;BR /&gt;&amp;lt;job-tracker&amp;gt;${jobTracker}&amp;lt;/job-tracker&amp;gt;&lt;BR /&gt;&amp;lt;name-node&amp;gt;${nameNode}&amp;lt;/name-node&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;script.q&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/hive&amp;gt;&lt;BR /&gt;&amp;lt;ok to="end"/&amp;gt;&lt;BR /&gt;&amp;lt;error to="fail"/&amp;gt;&lt;BR /&gt;&amp;lt;/action&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;kill name="fail"&amp;gt;&lt;BR /&gt;&amp;lt;message&amp;gt;Hive failed, error message[${wf:errorMessage(wf:lastErrorNode())}]&amp;lt;/message&amp;gt;&lt;BR /&gt;&amp;lt;/kill&amp;gt;&lt;BR /&gt;&amp;lt;end name="end"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/workflow-app&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[cloudera@localhost hive]$ pwd&lt;BR /&gt;/usr/share/doc/oozie-3.3.2+92/examples/apps/hive&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current (local) dir = /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work&lt;BR /&gt;------------------------&lt;BR /&gt;hive-exec-log4j.properties&lt;BR /&gt;.action.xml.crc&lt;BR /&gt;tmp&lt;BR /&gt;hive-log4j.properties&lt;BR /&gt;hive-site.xml&lt;BR /&gt;action.xml&lt;BR /&gt;script.q&lt;BR /&gt;------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Script [script.q] content:&lt;BR /&gt;------------------------&lt;BR /&gt;CREATE EXTERNAL TABLE test (&lt;BR /&gt;id int,&lt;BR /&gt;name string&lt;BR /&gt;)&lt;BR /&gt;ROW FORMAT DELIMITED&lt;BR /&gt;FIELDS TERMINATED BY '\t'&lt;BR /&gt;STORED AS TEXTFILE&lt;BR /&gt;LOCATION&lt;BR /&gt;'/user/cloudera/test';&lt;/P&gt;&lt;P&gt;INSERT OVERWRITE table test SELECT * FROM foo;&lt;/P&gt;&lt;P&gt;------------------------&lt;/P&gt;&lt;P&gt;Hive command arguments :&lt;BR /&gt;-f&lt;BR /&gt;script.q&lt;/P&gt;&lt;P&gt;=================================================================&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; Invoking Hive command line now &amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;Hadoop Job IDs executed by Hive:&lt;/P&gt;&lt;P&gt;Intercepting System.exit(10001)&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;&amp;lt; Invocation of Main class completed &amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;&lt;P&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.HiveMain], exit code [10001]&lt;/P&gt;&lt;P&gt;Oozie Launcher failed, finishing Hadoop job gracefully&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Oozie Launcher ends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;stderr logs&lt;/P&gt;&lt;P&gt;Logging initialized using configuration in jar:file:/mapred/local/taskTracker/distcache/9141962611866023942_1400842701_327187723/localhost.localdomain/user/oozie/share/lib/hive/hive-common-0.10.0-cdh4.4.0.jar!/hive-log4j.properties&lt;BR /&gt;Hive history file=/tmp/mapred/hive_job_log_eecd5d6b-69d3-4dbd-94ed-9c86ef42443d_1563998739.txt&lt;BR /&gt;OK&lt;BR /&gt;Time taken: 9.816 seconds&lt;BR /&gt;FAILED: SemanticException [Error 10001]: Line 3:42 Table not found 'foo'&lt;BR /&gt;Log file: /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work/hive-oozie-job_201405081447_0019.log not present. Therefore no Hadoop jobids found&lt;BR /&gt;Intercepting System.exit(10001)&lt;BR /&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.HiveMain], exit code [10001]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;syslog logs&lt;/P&gt;&lt;P&gt;2014-05-12 10:12:10,156 WARN mapreduce.Counters: Group org.apache.hadoop.mapred.Task$Counter is deprecated. Use org.apache.hadoop.mapreduce.TaskCounter instead&lt;BR /&gt;2014-05-12 10:12:11,099 INFO org.apache.hadoop.mapred.TaskRunner: Creating symlink: /mapred/local/taskTracker/distcache/-2339055663322524001_1176285901_1902801582/localhost.localdomain/user/cloudera/examples/apps/hive/script.q &amp;lt;- /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work/script.q&lt;BR /&gt;2014-05-12 10:12:11,231 WARN org.apache.hadoop.conf.Configuration: session.id is deprecated. Instead, use dfs.metrics.session-id&lt;BR /&gt;2014-05-12 10:12:11,231 INFO org.apache.hadoop.metrics.jvm.JvmMetrics: Initializing JVM Metrics with processName=MAP, sessionId=&lt;BR /&gt;2014-05-12 10:12:11,544 INFO org.apache.hadoop.util.ProcessTree: setsid exited with exit code 0&lt;BR /&gt;2014-05-12 10:12:11,549 INFO org.apache.hadoop.mapred.Task: Using ResourceCalculatorPlugin : org.apache.hadoop.util.LinuxResourceCalculatorPlugin@375e293a&lt;BR /&gt;2014-05-12 10:12:11,755 INFO org.apache.hadoop.mapred.MapTask: Processing split: hdfs://localhost.localdomain:8020/user/cloudera/oozie-oozi/0000014-140508144817449-oozie-oozi-W/hive-node--hive/input/dummy.txt:0+5&lt;BR /&gt;2014-05-12 10:12:11,773 WARN mapreduce.Counters: Counter name MAP_INPUT_BYTES is deprecated. Use FileInputFormatCounters as group name and BYTES_READ as counter name instead&lt;BR /&gt;2014-05-12 10:12:11,775 INFO org.apache.hadoop.mapred.MapTask: numReduceTasks: 0&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rio&lt;/P&gt;</description>
    <pubDate>Fri, 16 Sep 2022 08:58:50 GMT</pubDate>
    <dc:creator>rio</dc:creator>
    <dc:date>2022-09-16T08:58:50Z</dc:date>
    <item>
      <title>Issue with: Hive Action - Oozie</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12246#M1748</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to use hive with Oozie using hive action. The Oozie workflow is supposed to load data from one Hive table to another. I have a table foo in Hive and it is supposed to load data into table "test".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Cloudera VM with Hadoop 2.0.0-cdh4.4.0.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I run the workflow using below command:&lt;/P&gt;&lt;P&gt;[cloudera@localhost oozie-3.3.2+92]$ oozie job -oozie &lt;A href="http://localhost:11000/oozie" target="_blank"&gt;http://localhost:11000/oozie&lt;/A&gt; -config examples/apps/hive/job.properties -run&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When I go to the JobTracker log file it says: Table not found 'foo'. Any help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;cat script.q:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;REATE EXTERNAL TABLE test (&lt;BR /&gt;id int,&lt;BR /&gt;name string&lt;BR /&gt;)&lt;BR /&gt;ROW FORMAT DELIMITED&lt;BR /&gt;FIELDS TERMINATED BY '\t'&lt;BR /&gt;STORED AS TEXTFILE&lt;BR /&gt;LOCATION&lt;BR /&gt;'/user/cloudera/test';&lt;/P&gt;&lt;P&gt;INSERT OVERWRITE table test SELECT * FROM foo;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cat job.properties:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;nameNode=hdfs://localhost.localdomain:8020&lt;BR /&gt;jobTracker=localhost.localdomain:8021&lt;BR /&gt;queueName=default&lt;BR /&gt;examplesRoot=examples&lt;/P&gt;&lt;P&gt;oozie.use.system.libpath=true&lt;/P&gt;&lt;P&gt;oozie.wf.application.path=${nameNode}/user/${user.name}/${examplesRoot}/apps/hive&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;cat workflow.xml:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;&lt;BR /&gt;&amp;lt;workflow-app xmlns="uri:oozie:workflow:0.2" name="hive-wf"&amp;gt;&lt;BR /&gt;&amp;lt;start to="hive-node"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;action name="hive-node"&amp;gt;&lt;BR /&gt;&amp;lt;hive xmlns="uri:oozie:hive-action:0.2"&amp;gt;&lt;BR /&gt;&amp;lt;job-tracker&amp;gt;${jobTracker}&amp;lt;/job-tracker&amp;gt;&lt;BR /&gt;&amp;lt;name-node&amp;gt;${nameNode}&amp;lt;/name-node&amp;gt;&lt;BR /&gt;&amp;lt;script&amp;gt;script.q&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/hive&amp;gt;&lt;BR /&gt;&amp;lt;ok to="end"/&amp;gt;&lt;BR /&gt;&amp;lt;error to="fail"/&amp;gt;&lt;BR /&gt;&amp;lt;/action&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;kill name="fail"&amp;gt;&lt;BR /&gt;&amp;lt;message&amp;gt;Hive failed, error message[${wf:errorMessage(wf:lastErrorNode())}]&amp;lt;/message&amp;gt;&lt;BR /&gt;&amp;lt;/kill&amp;gt;&lt;BR /&gt;&amp;lt;end name="end"/&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/workflow-app&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[cloudera@localhost hive]$ pwd&lt;BR /&gt;/usr/share/doc/oozie-3.3.2+92/examples/apps/hive&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current (local) dir = /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work&lt;BR /&gt;------------------------&lt;BR /&gt;hive-exec-log4j.properties&lt;BR /&gt;.action.xml.crc&lt;BR /&gt;tmp&lt;BR /&gt;hive-log4j.properties&lt;BR /&gt;hive-site.xml&lt;BR /&gt;action.xml&lt;BR /&gt;script.q&lt;BR /&gt;------------------------&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Script [script.q] content:&lt;BR /&gt;------------------------&lt;BR /&gt;CREATE EXTERNAL TABLE test (&lt;BR /&gt;id int,&lt;BR /&gt;name string&lt;BR /&gt;)&lt;BR /&gt;ROW FORMAT DELIMITED&lt;BR /&gt;FIELDS TERMINATED BY '\t'&lt;BR /&gt;STORED AS TEXTFILE&lt;BR /&gt;LOCATION&lt;BR /&gt;'/user/cloudera/test';&lt;/P&gt;&lt;P&gt;INSERT OVERWRITE table test SELECT * FROM foo;&lt;/P&gt;&lt;P&gt;------------------------&lt;/P&gt;&lt;P&gt;Hive command arguments :&lt;BR /&gt;-f&lt;BR /&gt;script.q&lt;/P&gt;&lt;P&gt;=================================================================&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; Invoking Hive command line now &amp;gt;&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;Hadoop Job IDs executed by Hive:&lt;/P&gt;&lt;P&gt;Intercepting System.exit(10001)&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;&amp;lt; Invocation of Main class completed &amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;&lt;P&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.HiveMain], exit code [10001]&lt;/P&gt;&lt;P&gt;Oozie Launcher failed, finishing Hadoop job gracefully&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Oozie Launcher ends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;stderr logs&lt;/P&gt;&lt;P&gt;Logging initialized using configuration in jar:file:/mapred/local/taskTracker/distcache/9141962611866023942_1400842701_327187723/localhost.localdomain/user/oozie/share/lib/hive/hive-common-0.10.0-cdh4.4.0.jar!/hive-log4j.properties&lt;BR /&gt;Hive history file=/tmp/mapred/hive_job_log_eecd5d6b-69d3-4dbd-94ed-9c86ef42443d_1563998739.txt&lt;BR /&gt;OK&lt;BR /&gt;Time taken: 9.816 seconds&lt;BR /&gt;FAILED: SemanticException [Error 10001]: Line 3:42 Table not found 'foo'&lt;BR /&gt;Log file: /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work/hive-oozie-job_201405081447_0019.log not present. Therefore no Hadoop jobids found&lt;BR /&gt;Intercepting System.exit(10001)&lt;BR /&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.HiveMain], exit code [10001]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;syslog logs&lt;/P&gt;&lt;P&gt;2014-05-12 10:12:10,156 WARN mapreduce.Counters: Group org.apache.hadoop.mapred.Task$Counter is deprecated. Use org.apache.hadoop.mapreduce.TaskCounter instead&lt;BR /&gt;2014-05-12 10:12:11,099 INFO org.apache.hadoop.mapred.TaskRunner: Creating symlink: /mapred/local/taskTracker/distcache/-2339055663322524001_1176285901_1902801582/localhost.localdomain/user/cloudera/examples/apps/hive/script.q &amp;lt;- /mapred/local/taskTracker/cloudera/jobcache/job_201405081447_0019/attempt_201405081447_0019_m_000000_0/work/script.q&lt;BR /&gt;2014-05-12 10:12:11,231 WARN org.apache.hadoop.conf.Configuration: session.id is deprecated. Instead, use dfs.metrics.session-id&lt;BR /&gt;2014-05-12 10:12:11,231 INFO org.apache.hadoop.metrics.jvm.JvmMetrics: Initializing JVM Metrics with processName=MAP, sessionId=&lt;BR /&gt;2014-05-12 10:12:11,544 INFO org.apache.hadoop.util.ProcessTree: setsid exited with exit code 0&lt;BR /&gt;2014-05-12 10:12:11,549 INFO org.apache.hadoop.mapred.Task: Using ResourceCalculatorPlugin : org.apache.hadoop.util.LinuxResourceCalculatorPlugin@375e293a&lt;BR /&gt;2014-05-12 10:12:11,755 INFO org.apache.hadoop.mapred.MapTask: Processing split: hdfs://localhost.localdomain:8020/user/cloudera/oozie-oozi/0000014-140508144817449-oozie-oozi-W/hive-node--hive/input/dummy.txt:0+5&lt;BR /&gt;2014-05-12 10:12:11,773 WARN mapreduce.Counters: Counter name MAP_INPUT_BYTES is deprecated. Use FileInputFormatCounters as group name and BYTES_READ as counter name instead&lt;BR /&gt;2014-05-12 10:12:11,775 INFO org.apache.hadoop.mapred.MapTask: numReduceTasks: 0&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;==&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rio&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 08:58:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12246#M1748</guid>
      <dc:creator>rio</dc:creator>
      <dc:date>2022-09-16T08:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with: Hive Action - Oozie</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12282#M1749</link>
      <description>&lt;P&gt;I added this line in workflow.xml and it resolved the issue. I also copied the&amp;nbsp;&lt;SPAN style="font-size: 11px; line-height: 1.2;"&gt;hive-site.xml to workflow directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 1.2;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;lt;job-xml&amp;gt;hive-site.xml&amp;lt;/job-xml&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2014 14:38:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12282#M1749</guid>
      <dc:creator>rio</dc:creator>
      <dc:date>2014-05-13T14:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with: Hive Action - Oozie</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12296#M1750</link>
      <description>&lt;P&gt;Thank you for reporting the solution back to us! &amp;nbsp;Glad it's resolved.&lt;/P&gt;</description>
      <pubDate>Tue, 13 May 2014 19:01:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/12296#M1750</guid>
      <dc:creator>Clint</dc:creator>
      <dc:date>2014-05-13T19:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with: Hive Action - Oozie</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/31518#M1751</link>
      <description>&lt;P&gt;From where should I copy hive-site.xml? &amp;nbsp;I tried a couple that I found under /opt/cloudera/parcels individually but no joy.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2015 20:46:44 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/31518#M1751</guid>
      <dc:creator>nbest</dc:creator>
      <dc:date>2015-09-03T20:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with: Hive Action - Oozie</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/31523#M1752</link>
      <description>You will need the gateway copy, which exists under /etc/hive/conf/ on a Hive Gateway designated node (check Hive -&amp;gt; Instances in CM to find which hosts have a gateway role).</description>
      <pubDate>Fri, 04 Sep 2015 00:16:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Issue-with-Hive-Action-Oozie/m-p/31523#M1752</guid>
      <dc:creator>Harsh J</dc:creator>
      <dc:date>2015-09-04T00:16:32Z</dc:date>
    </item>
  </channel>
</rss>

