<?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 Re: What is Schema URI in oozie? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132173#M23172</link>
    <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/1505/alexraj84.html" nodeid="1505"&gt;@Alex Raj&lt;/A&gt;. Thanks. I feel I have answered that as well, but let me explain better.&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;The URI info can be found from the Oozie Docs. See here: &lt;A href="https://oozie.apache.org/docs/3.3.2/WorkflowFunctionalSpec.html#OozieWFSchema"&gt;https://oozie.apache.org/docs/3.3.2/WorkflowFunctionalSpec.html#OozieWFSchema&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;And to determine what version to use, you have to know what Oozie version you are using and if that version supports it or not. Again the docs link would help. Docs are for specific Oozie version. Example for Oozie 4, it's here &lt;A href="https://oozie.apache.org/docs/4.2.0/WorkflowFunctionalSpec.html#OozieWFSchema"&gt;https://oozie.apache.org/docs/4.2.0/WorkflowFunctionalSpec.html#OozieWFSchema&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
    <pubDate>Mon, 21 Mar 2016 15:48:25 GMT</pubDate>
    <dc:creator>rpatil</dc:creator>
    <dc:date>2016-03-21T15:48:25Z</dc:date>
    <item>
      <title>What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132168#M23167</link>
      <description>&lt;P&gt;I am new to Oozie and trying to understand the significance of the schema URI in oozie workflow. Below is a typical mention of a schema uri. &lt;/P&gt;&lt;P&gt;xmlns="uri:oozie:workflow:0.5"&lt;/P&gt;&lt;P&gt;What exactly does it mean? What does the number (0.5) at the end implies to? How should I get the uri information and from where? I am using CDH 5.3.6 and the Oozie Client Build version is 4.0.0. Please write a detailed explanation on oozie schema if possible.&lt;/P&gt;&lt;P&gt;Much appreciate your help. Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 13:27:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132168#M23167</guid>
      <dc:creator>Alexraj84</dc:creator>
      <dc:date>2016-03-17T13:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132169#M23168</link>
      <description>&lt;P&gt;My understanding is that you reference aparticular version of oozie xml languagw for workflows. number 0.5 signifies the latest version as of Oozie 4.2.0. With every new version there are Oozie actions that are being added, deprecated, removed and extended. Meaning let's take fs action, here are notes on it from the docs&lt;/P&gt;&lt;P&gt;As of schema 0.4, if a name-node element is specified, then it is not necessary for any of the paths to start with the file system URI as it is taken from the name-node element. This is also true if the name-node is specified in the global section (see &lt;A href="https://oozie.apache.org/docs/4.2.0/WorkflowFunctionalSpec.html#GlobalConfigurations"&gt;Global Configurations&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;As of schema 0.4, zero or more job-xml elements can be specified; these must refer to Hadoop JobConf job.xml formatted files bundled in the workflow application. They can be used to set additional properties for the FileSystem instance.&lt;/P&gt;&lt;P&gt;As of schema 0.4, if a configuration element is specified, then it will also be used to set additional JobConf properties for the FileSystem instance. Properties specified in theconfiguration element override properties specified in the files specified by any job-xml elements.&lt;/P&gt;&lt;P&gt;I would not pay too much attention to schema uro, just try using the latest.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 18:23:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132169#M23168</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-03-17T18:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132170#M23169</link>
      <description>&lt;P&gt;XML has XSD (&lt;STRONG&gt;XML Schema Definition&lt;/STRONG&gt;) that defines the schema/structure of the XML document. It describes what elements are allowed, nesting and count and such. While wiring XML that conforms with certain or specific XSD, namespace is specified to point to it.&lt;/P&gt;&lt;P&gt;For Oozie there are version specific XSDs based on new features/elements/attributes/actions they support. Here's the workflow 0.5 XSD that is referred by that xmlns. &lt;A href="https://github.com/apache/oozie/blob/master/client/src/main/resources/oozie-workflow-0.5.xsd" target="_blank"&gt;https://github.com/apache/oozie/blob/master/client/src/main/resources/oozie-workflow-0.5.xsd&lt;/A&gt;&lt;/P&gt;&lt;P&gt;When you refer to the said XSD, if means your workflow XMLs will adhere to and use the elements/attributes described by that XSD.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Mar 2016 01:46:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132170#M23169</guid>
      <dc:creator>rpatil</dc:creator>
      <dc:date>2016-03-18T01:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132171#M23170</link>
      <description>&lt;P&gt;Thanks a mil &lt;A rel="user" href="https://community.cloudera.com/users/2046/rpatil.html" nodeid="2046"&gt;@rpatil&lt;/A&gt; . I have understood its significance now. However there is still a question that was unanswered and I hope you can answer it. Where should I get the uri information from? And a new question is, how will I determine what version to use?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2016 15:41:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132171#M23170</guid>
      <dc:creator>Alexraj84</dc:creator>
      <dc:date>2016-03-21T15:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132172#M23171</link>
      <description>&lt;P&gt; &lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt;, thanks for your answer.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2016 15:42:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132172#M23171</guid>
      <dc:creator>Alexraj84</dc:creator>
      <dc:date>2016-03-21T15:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132173#M23172</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/1505/alexraj84.html" nodeid="1505"&gt;@Alex Raj&lt;/A&gt;. Thanks. I feel I have answered that as well, but let me explain better.&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;The URI info can be found from the Oozie Docs. See here: &lt;A href="https://oozie.apache.org/docs/3.3.2/WorkflowFunctionalSpec.html#OozieWFSchema"&gt;https://oozie.apache.org/docs/3.3.2/WorkflowFunctionalSpec.html#OozieWFSchema&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;And to determine what version to use, you have to know what Oozie version you are using and if that version supports it or not. Again the docs link would help. Docs are for specific Oozie version. Example for Oozie 4, it's here &lt;A href="https://oozie.apache.org/docs/4.2.0/WorkflowFunctionalSpec.html#OozieWFSchema"&gt;https://oozie.apache.org/docs/4.2.0/WorkflowFunctionalSpec.html#OozieWFSchema&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 21 Mar 2016 15:48:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132173#M23172</guid>
      <dc:creator>rpatil</dc:creator>
      <dc:date>2016-03-21T15:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132174#M23173</link>
      <description>&lt;P&gt;@&lt;A href="https://community.hortonworks.com/users/2046/rpatil.html"&gt;rpatil&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Just a reminder you will surely get more useful help in here for HDP and not CDH , if a specific details is not answered then hunt down some Cloudera forum they could be more specific&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2016 16:49:06 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132174#M23173</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2016-03-21T16:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132175#M23174</link>
      <description>&lt;P&gt;Thanks again. Your answers makes me to dig deep and shoot more questions. Consider there is a new release of Oozie say 5.0.2. How will I determine what version to use in the schema URI. Should I look out in the same URL that you have mentioned or is there a better way?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2016 18:36:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132175#M23174</guid>
      <dc:creator>Alexraj84</dc:creator>
      <dc:date>2016-03-21T18:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: What is Schema URI in oozie?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132176#M23175</link>
      <description>&lt;P&gt;As far I understand. Oozie has been careful so far to keep the backward compatibility. Meaning, existing workflows with existing URI work just fine even in newer release without changing anything. One can keep using the older URI just fine even in new release. However, if from the new version, you know some new feature (tag/attribute) has been added and you want to use that, then only you need to refer to that new URI.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2016 18:44:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-is-Schema-URI-in-oozie/m-p/132176#M23175</guid>
      <dc:creator>rpatil</dc:creator>
      <dc:date>2016-03-21T18:44:07Z</dc:date>
    </item>
  </channel>
</rss>

