-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmetainfo.xml
59 lines (57 loc) · 1.69 KB
/
metainfo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>
<metainfo>
<schemaVersion>2.0</schemaVersion>
<services>
<service>
<name>KYLIN</name>
<displayName>Kylin</displayName>
<comment>an open source Distributed Analytics Engine.</comment>
<version>3.1.1</version>
<components>
<component>
<name>KYLIN_ALL</name>
<displayName>Kylin All</displayName>
<category>MASTER</category>
<cardinality>1</cardinality>
<commandScript>
<script>scripts/kylin_master.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
<component>
<name>KYLIN_QUERY</name>
<displayName>Kylin Query</displayName>
<category>SLAVE</category>
<cardinality>0+</cardinality>
<commandScript>
<script>scripts/kylin_query.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
</components>
<requiredServices>
<service>HDFS</service>
<service>HIVE</service>
<service>HBASE</service>
</requiredServices>
<osSpecifics>
<osSpecific>
<osFamily>redhat5,redhat6,redhat7</osFamily>
<packages>
<package>
<name>epel-release</name>
</package>
</packages>
</osSpecific>
</osSpecifics>
<quickLinksConfigurations>
<quickLinksConfiguration>
<fileName>quicklinks.json</fileName>
<default>true</default>
</quickLinksConfiguration>
</quickLinksConfigurations>
</service>
</services>
</metainfo>