Project

General

Profile

1
<?xml version="1.0"?>
2
<process-definition name="actions-commit-hbase"
3
	xmlns="http://sarasvati.googlecode.com/ProcessDefinition">
4
	
5
	<node name="prepareImport" type="CheckDataTable" isStart="true">
6
		<arc to="downloadArtifact" />
7
		<arc name="failed" to="failure" />
8
		<custom>
9
			<description>
10
				Prepare import job
11
			</description>
12
		</custom>
13
	</node>
14
	
15
	<node name="downloadArtifact" type="DownloadJobArtifact">
16
		<arc to="commit" />
17
		<arc name="failed" to="failure" />
18
		<custom>
19
			<description>
20
				Download M/R artifact
21
			</description>
22
		</custom>
23
	</node>	
24
	
25
	<node name="commit" type="CommitActions">
26
		<arc to="success"/>
27
		<arc name="failed" to="failure" />
28
		<custom>
29
			<description>
30
				Commit actions
31
			</description>
32
		</custom>
33
	</node>
34

    
35
	<node name="success" type="Success" />
36
	<node name="failure" />
37

    
38
</process-definition>
(1-1/2)