|
|
|
@ -8,54 +8,301 @@
|
|
|
|
|
<name>allowedsemrels</name>
|
|
|
|
|
<description>the semantic relationships allowed for propagation</description>
|
|
|
|
|
</property>
|
|
|
|
|
<property>
|
|
|
|
|
<name>sparkDriverMemory</name>
|
|
|
|
|
<description>memory for driver process</description>
|
|
|
|
|
</property>
|
|
|
|
|
<property>
|
|
|
|
|
<name>sparkExecutorMemory</name>
|
|
|
|
|
<description>memory for individual executor</description>
|
|
|
|
|
</property>
|
|
|
|
|
<property>
|
|
|
|
|
<name>sparkExecutorCores</name>
|
|
|
|
|
<description>number of cores used by single executor</description>
|
|
|
|
|
</property>
|
|
|
|
|
<property>
|
|
|
|
|
<name>isLookupUrl</name>
|
|
|
|
|
<description>the isLookup service endpoint</description>
|
|
|
|
|
</property>
|
|
|
|
|
</parameters>
|
|
|
|
|
|
|
|
|
|
<start to="ResultToCommunityFromSemRelPropagation"/>
|
|
|
|
|
<start to="reset-outputpath"/>
|
|
|
|
|
|
|
|
|
|
<kill name="Kill">
|
|
|
|
|
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
|
|
|
|
|
</kill>
|
|
|
|
|
<kill name="Kill">
|
|
|
|
|
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
|
|
|
|
|
</kill>
|
|
|
|
|
<action name="reset-outputpath">
|
|
|
|
|
<fs>
|
|
|
|
|
<delete path='${workingDir}/resulttocommunitysemrel_propagation'/>
|
|
|
|
|
</fs>
|
|
|
|
|
<ok to="copy_relation"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="copy_relation">
|
|
|
|
|
<distcp xmlns="uri:oozie:distcp-action:0.2">
|
|
|
|
|
<job-tracker>${jobTracker}</job-tracker>
|
|
|
|
|
<name-node>${nameNode}</name-node>
|
|
|
|
|
<arg>${nameNode}/${sourcePath}/relation</arg>
|
|
|
|
|
<arg>${nameNode}/${workingDir}/projecttoresult_propagation/relation</arg>
|
|
|
|
|
</distcp>
|
|
|
|
|
<ok to="fork_prepare_assoc_step1"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
|
|
|
|
|
<action name="ResultToCommunityFromSemRelPropagation">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<job-tracker>${jobTracker}</job-tracker>
|
|
|
|
|
<name-node>${nameNode}</name-node>
|
|
|
|
|
<master>yarn-cluster</master>
|
|
|
|
|
<fork name="fork_prepare_assoc_step1">
|
|
|
|
|
<path start="join_prepare_publication"/>
|
|
|
|
|
<path start="join_prepare_dataset"/>
|
|
|
|
|
<path start="join_prepare_otherresearchproduct"/>
|
|
|
|
|
<path start="join_prepare_software"/>
|
|
|
|
|
</fork>
|
|
|
|
|
|
|
|
|
|
<action name="join_prepare_publication">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>ResultToCommunitySemRel-PreparePhase1-Publications</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.PrepareResultCommunitySetStep1</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Publication</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/preparedInfo/targetCommunityAssoc</arg>
|
|
|
|
|
<arg>--allowedsemrels</arg><arg>${allowedsemrels}</arg>
|
|
|
|
|
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_prepare_dataset">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>ResultToCommunitySemRel-PreparePhase1-Dataset</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.PrepareResultCommunitySetStep1</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Dataset</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/preparedInfo/targetCommunityAssoc</arg>
|
|
|
|
|
<arg>--allowedsemrels</arg><arg>${allowedsemrels}</arg>
|
|
|
|
|
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_prepare_otherresearchproduct">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>ResultToCommunitySemRel-PreparePhase1-ORP</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.PrepareResultCommunitySetStep1</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.OtherResearchProduct</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/preparedInfo/targetCommunityAssoc</arg>
|
|
|
|
|
<arg>--allowedsemrels</arg><arg>${allowedsemrels}</arg>
|
|
|
|
|
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_prepare_software">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>ResultToCommunitySemRel-PreparePhase1-Software</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.PrepareResultCommunitySetStep1</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Software</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/preparedInfo/targetCommunityAssoc</arg>
|
|
|
|
|
<arg>--allowedsemrels</arg><arg>${allowedsemrels}</arg>
|
|
|
|
|
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
|
|
|
|
|
<join name="wait" to="prepare_assoc_step2"/>
|
|
|
|
|
|
|
|
|
|
<action name="prepare_assoc_step2">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>ResultToCommunitySemRelPropagation</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttoorganizationfrominstrepo.SparkResultToOrganizationFromIstRepoJob</class>
|
|
|
|
|
<name>ResultToCommunityEmRelPropagation-PreparePhase2</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.PrepareResultCommunitySetStep2</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>--executor-memory ${sparkExecutorMemory}
|
|
|
|
|
--executor-cores ${sparkExecutorCores}
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners="com.cloudera.spark.lineage.NavigatorAppListener"
|
|
|
|
|
--conf spark.sql.queryExecutionListeners="com.cloudera.spark.lineage.NavigatorQueryListener"
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>-mt</arg> <arg>yarn-cluster</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}</arg>
|
|
|
|
|
<arg>--allowedsemrels</arg><arg>${allowedsemrels}</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--isLookupUrl</arg><arg>${isLookupUrl}</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${workingDir}/preparedInfo/targetCommunityAssoc</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/preparedInfo/mergedCommunityAssoc</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="End"/>
|
|
|
|
|
<ok to="fork-join-exec-propagation"/>
|
|
|
|
|
<!-- <ok to="End"/>-->
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
|
|
|
|
|
</action>
|
|
|
|
|
|
|
|
|
|
<fork name="fork-join-exec-propagation">
|
|
|
|
|
<path start="join_propagate_publication"/>
|
|
|
|
|
<path start="join_propagate_dataset"/>
|
|
|
|
|
<path start="join_propagate_otherresearchproduct"/>
|
|
|
|
|
<path start="join_propagate_software"/>
|
|
|
|
|
</fork>
|
|
|
|
|
|
|
|
|
|
<action name="join_propagate_publication">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>Result2CommunitySemRelPropagation-Publication</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.SparkResultToCommunityThroughSemRelJob4</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--preparedInfoPath</arg><arg>${workingDir}/preparedInfo/mergedCommunityAssoc</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}/publication</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Publication</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/publication</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait2"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_propagate_dataset">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>Result2CommunitySemRelPropagation-Dataset</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.SparkResultToCommunityThroughSemRelJob4</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--preparedInfoPath</arg><arg>${workingDir}/preparedInfo/mergedCommunityAssoc</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}/dataset</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Dataset</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/dataset</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait2"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_propagate_otherresearchproduct">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>Result2CommunitySemRelPropagation-ORP</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.SparkResultToCommunityThroughSemRelJob4</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--preparedInfoPath</arg><arg>${workingDir}/preparedInfo/mergedCommunityAssoc</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}/otherresearchproduct</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.OtherResearchProduct</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/otherresearchproduct</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait2"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="join_propagate_software">
|
|
|
|
|
<spark xmlns="uri:oozie:spark-action:0.2">
|
|
|
|
|
<master>yarn</master>
|
|
|
|
|
<mode>cluster</mode>
|
|
|
|
|
<name>Result2CommunitySemRelPropagation-Software</name>
|
|
|
|
|
<class>eu.dnetlib.dhp.resulttocommunityfromsemrel.SparkResultToCommunityThroughSemRelJob4</class>
|
|
|
|
|
<jar>dhp-propagation-${projectVersion}.jar</jar>
|
|
|
|
|
<spark-opts>
|
|
|
|
|
--executor-cores=${sparkExecutorCores}
|
|
|
|
|
--executor-memory=${sparkExecutorMemory}
|
|
|
|
|
--driver-memory=${sparkDriverMemory}
|
|
|
|
|
--conf spark.extraListeners=${spark2ExtraListeners}
|
|
|
|
|
--conf spark.sql.queryExecutionListeners=${spark2SqlQueryExecutionListeners}
|
|
|
|
|
--conf spark.yarn.historyServer.address=${spark2YarnHistoryServerAddress}
|
|
|
|
|
--conf spark.eventLog.dir=${nameNode}${spark2EventLogDir}
|
|
|
|
|
--conf spark.dynamicAllocation.enabled=true
|
|
|
|
|
--conf spark.dynamicAllocation.maxExecutors=${spark2MaxExecutors}
|
|
|
|
|
</spark-opts>
|
|
|
|
|
<arg>--preparedInfoPath</arg><arg>${workingDir}/preparedInfo/mergedCommunityAssoc</arg>
|
|
|
|
|
<arg>--sourcePath</arg><arg>${sourcePath}/software</arg>
|
|
|
|
|
<arg>--hive_metastore_uris</arg><arg>${hive_metastore_uris}</arg>
|
|
|
|
|
<arg>--resultTableName</arg><arg>eu.dnetlib.dhp.schema.oaf.Software</arg>
|
|
|
|
|
<arg>--outputPath</arg><arg>${workingDir}/software</arg>
|
|
|
|
|
</spark>
|
|
|
|
|
<ok to="wait2"/>
|
|
|
|
|
<error to="Kill"/>
|
|
|
|
|
</action>
|
|
|
|
|
|
|
|
|
|
<join name="wait2" to="End"/>
|
|
|
|
|
|
|
|
|
|
<end name="End"/>
|
|
|
|
|
</workflow-app>
|