Hi Viacheslav, You can try to parameterize your workflow xml as much as possible, and then simply use different properties files to substitute different values for them. Else, you can abstract some configuration in "job.xml" and "include" it in your workflow like this E.g. <action name="firstparallejob"> <map-reduce> <job-tracker>foo:8021</job-tracker> <name-node>bar:8020</name-node> <job-xml>job1.xml</job-xml> <-- job1.xml has configuration parameters </map-reduce> <ok to="joining"/> <error to="kill"/> </action>
--Mona On 11/22/13 6:41 AM, "Viacheslav Rodionov" <viacheslav.rodio...@gmail.com> wrote: >Hi everybody, > >In our Hadoop project I need to use one and the same Oozie workflow on >different Hadoop clusters. >So I need two different configuration files (I use xml files), let's name >them conf1.xml and conf2.xml. But of course they are not that different, >many common parameters are the same. What I want to do here is to create a >third file common_conf.xml with common parameters and include this file >into conf1.xml and conf2.xml. > >Is that possible to do? Are there any other options? > >I tried to find an XSD schema for config files but couldn't find it. > >Thanks, >Viacheslav