Project

General

Profile

1
<?xml version="1.0"?>
2
<process-definition name="actions-delete-hbase"
3
	xmlns="http://sarasvati.googlecode.com/ProcessDefinition">
4

    
5
	<node name="download" type="DownloadJobArtifact" isStart="true">
6
		<arc to="delete" />
7
		<arc name="failed" to="failure" />
8
		<custom>
9
			<description>
10
				Download M/R artifact
11
			</description>
12
		</custom>
13
	</node>	
14
	
15
	<node name="delete" type="DeleteActions">
16
		<arc to="success"/>
17
		<arc name="failed" to="failure" />
18
		<custom>
19
			<description>
20
				Delete actions
21
			</description>
22
		</custom>
23
	</node>
24

    
25
	<node name="success" type="Success" />
26
	<node name="failure" />
27

    
28
</process-definition>
(2-2/2)