dnet-hadoop/dhp-workflows/dhp-broker-events/src/main/resources/eu/dnetlib/dhp/broker/oa/partial/oozie_app/workflow.xml

146 lines
5.6 KiB
XML
Raw Normal View History

2020-06-29 16:33:32 +02:00
<workflow-app name="create broker events - partial" xmlns="uri:oozie:workflow:0.5">
2020-06-23 08:37:35 +02:00
<parameters>
<property>
<name>graphInputPath</name>
<description>the path where the graph is stored</description>
</property>
<property>
<name>workingPath</name>
<description>the path where the the generated data will be stored</description>
2020-08-19 12:39:22 +02:00
</property>
<property>
<name>datasourceIdWhitelist</name>
<value>-</value>
<description>a white list (comma separeted, - for empty list) of datasource ids</description>
</property>
<property>
<name>datasourceTypeWhitelist</name>
<value>-</value>
<description>a white list (comma separeted, - for empty list) of datasource types</description>
</property>
<property>
<name>datasourceIdBlacklist</name>
<value>-</value>
<description>a black list (comma separeted, - for empty list) of datasource ids</description>
</property>
<property>
<name>esEventIndexName</name>
2020-08-26 15:10:48 +02:00
<description>the elasticsearch index name for events</description>
</property>
<property>
<name>esNotificationsIndexName</name>
<description>the elasticsearch index name for notifications</description>
2020-08-19 12:39:22 +02:00
</property>
<property>
<name>esIndexHost</name>
<description>the elasticsearch host</description>
</property>
<property>
<name>maxIndexedEventsForDsAndTopic</name>
<description>the max number of events for each couple (ds/topic)</description>
2020-06-23 08:37:35 +02:00
</property>
2020-08-21 14:52:48 +02:00
<property>
<name>brokerApiBaseUrl</name>
<description>the url of the broker service api</description>
</property>
2020-09-17 15:51:22 +02:00
<property>
<name>brokerDbUrl</name>
<description>the url of the broker database</description>
</property>
<property>
<name>brokerDbUser</name>
<description>the user of the broker database</description>
</property>
<property>
<name>brokerDbPassword</name>
<description>the password of the broker database</description>
</property>
2020-06-23 08:37:35 +02:00
<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>oozieActionShareLibForSpark2</name>
<description>oozie action sharelib for spark 2.*</description>
</property>
<property>
<name>spark2ExtraListeners</name>
<value>com.cloudera.spark.lineage.NavigatorAppListener</value>
<description>spark 2.* extra listeners classname</description>
</property>
<property>
<name>spark2SqlQueryExecutionListeners</name>
<value>com.cloudera.spark.lineage.NavigatorQueryListener</value>
<description>spark 2.* sql query execution listeners classname</description>
</property>
<property>
<name>spark2YarnHistoryServerAddress</name>
<description>spark 2.* yarn history server address</description>
</property>
<property>
<name>spark2EventLogDir</name>
<description>spark 2.* event log dir location</description>
</property>
</parameters>
<global>
<job-tracker>${jobTracker}</job-tracker>
<name-node>${nameNode}</name-node>
<configuration>
<property>
<name>mapreduce.job.queuename</name>
<value>${queueName}</value>
</property>
<property>
<name>oozie.launcher.mapred.job.queue.name</name>
<value>${oozieLauncherQueueName}</value>
</property>
<property>
<name>oozie.action.sharelib.for.spark</name>
<value>${oozieActionShareLibForSpark2}</value>
</property>
</configuration>
</global>
2020-09-25 09:02:58 +02:00
<start to="partition"/>
2020-06-23 08:37:35 +02:00
<kill name="Kill">
<message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
</kill>
2020-07-15 09:18:40 +02:00
2020-09-25 09:02:58 +02:00
<action name="partition">
2020-07-15 09:18:40 +02:00
<spark xmlns="uri:oozie:spark-action:0.2">
<master>yarn</master>
<mode>cluster</mode>
2020-09-25 09:02:58 +02:00
<name>PartitionEventsByDsIdJob</name>
<class>eu.dnetlib.dhp.broker.oa.PartitionEventsByDsIdJob</class>
2020-07-15 09:18:40 +02:00
<jar>dhp-broker-events-${projectVersion}.jar</jar>
<spark-opts>
2020-09-17 11:38:07 +02:00
--executor-cores=${sparkExecutorCores}
2020-07-15 09:18:40 +02:00
--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.sql.shuffle.partitions=3840
</spark-opts>
2020-09-25 09:02:58 +02:00
<arg>--graphPath</arg><arg>${graphInputPath}</arg>
2020-07-15 09:18:40 +02:00
<arg>--workingPath</arg><arg>${workingPath}</arg>
</spark>
2020-06-23 08:37:35 +02:00
<ok to="End"/>
<error to="Kill"/>
</action>
2020-07-28 12:02:15 +02:00
2020-06-23 08:37:35 +02:00
<end name="End"/>
</workflow-app>