forked from D-Net/dnet-hadoop
updated parameters for regular_all_steps worfklow, introduced flag 'reuseContent'
This commit is contained in:
parent
b8290b5851
commit
2f0c85eeb3
|
@ -9,6 +9,11 @@
|
||||||
<name>graphBasePath</name>
|
<name>graphBasePath</name>
|
||||||
<description>the target path to store raw graph</description>
|
<description>the target path to store raw graph</description>
|
||||||
</property>
|
</property>
|
||||||
|
<property>
|
||||||
|
<name>reuseContent</name>
|
||||||
|
<value>false</value>
|
||||||
|
<description>should import content from the aggregator or reuse a previous version</description>
|
||||||
|
</property>
|
||||||
<property>
|
<property>
|
||||||
<name>postgresURL</name>
|
<name>postgresURL</name>
|
||||||
<description>the postgres URL to access to the database</description>
|
<description>the postgres URL to access to the database</description>
|
||||||
|
@ -43,19 +48,34 @@
|
||||||
</property>
|
</property>
|
||||||
</parameters>
|
</parameters>
|
||||||
|
|
||||||
<start to="ResetWorkingPath"/>
|
<start to="ResetGraphPath"/>
|
||||||
|
|
||||||
<kill name="Kill">
|
<kill name="Kill">
|
||||||
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
|
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
|
||||||
</kill>
|
</kill>
|
||||||
|
|
||||||
<action name="ResetWorkingPath">
|
<action name="ResetGraphPath">
|
||||||
<fs>
|
<fs>
|
||||||
<delete path='${workingPath}'/>
|
|
||||||
<mkdir path='${workingPath}'/>
|
|
||||||
<delete path="'${graphBasePath}/graph_raw'"/>
|
<delete path="'${graphBasePath}/graph_raw'"/>
|
||||||
<mkdir path="'${graphBasePath}/graph_raw'"/>
|
<mkdir path="'${graphBasePath}/graph_raw'"/>
|
||||||
</fs>
|
</fs>
|
||||||
|
<ok to="ReuseContent"/>
|
||||||
|
<error to="Kill"/>
|
||||||
|
</action>
|
||||||
|
|
||||||
|
<decision name="ReuseContent">
|
||||||
|
<switch>
|
||||||
|
<case to="ResetWorkingPath">${wf:conf('reuseContent') eq false}</case>
|
||||||
|
<case to="GenerateEntities">${wf:conf('reuseContent') eq true}</case>
|
||||||
|
<default to="ResetWorkingPath"/>
|
||||||
|
</switch>
|
||||||
|
</decision>
|
||||||
|
|
||||||
|
<action name="ResetWorkingPath">
|
||||||
|
<fs>
|
||||||
|
<delete path="'${workingPath}'"/>
|
||||||
|
<mkdir path="'${workingPath}'"/>
|
||||||
|
</fs>
|
||||||
<ok to="ImportDB"/>
|
<ok to="ImportDB"/>
|
||||||
<error to="Kill"/>
|
<error to="Kill"/>
|
||||||
</action>
|
</action>
|
||||||
|
|
Loading…
Reference in New Issue