-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigtop.bom
396 lines (386 loc) · 16.6 KB
/
bigtop.bom
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** DSL documentation
The structure of this configuration DSL is pretty self-explanatory. The main
section is 'components' that contains the description of all things included
into the stack. The following words are considered terminals and shouldn't be
modified as it will affect the parsing behavior:
- bigtop
- version
- stack
- version_base
- apache
- pkg
- tarball, source, destinations
- url, download_path, site, archive
Also, the following are base constants and if renamed will affect the some of
the stack's definitions
- APACHE_MIRROR
- APACHE_ARCHIVE
bigtop { // *the name should be change: the parsing code depends on it*
version = "STACK-VERSION" // *required*
stack { // *required* Fundamental properties of the Stack: JDK, SDK, GDK, etc
'jdk' { version = '1.8'; version_base = version }
'scala' { version = '2.10.4'; version_base = version }
}
apache { // *required* These shoudn't be modified unless ASF Infra demands changes
APACHE_MIRROR = "https://apache.osuosl.org"
APACHE_ARCHIVE = "https://archive.apache.org/dist"
}
git { // *optional* This is a global setting to access protected git repositories,
// can be specified per component as well
user = "john_doe"
token = "john's access token"
}
components { *required; preserve the name* if empty, nothing will be built
'label' { // label *SHOULD* be the same as the name; otherwise some tasks will fail
name = 'component1' // *required* the name of the component
// 'pkg' value is optional and will be set to that of 'name' i.e. [pkg := name]
pkg = name // *optional* and will be set to the 'name' value
// 'base' is required; [pkg := base ]; [release := 1 ]
version { base = 'x.y.z'; pkg = base; release = 1 }
tarball {
source = "apache-component1-${version.base}.tar.gz"
// It is advised to use different destination filenames to avoid
// clashes when working with git repos and downloading the artifacts
// from the branches with the same names.
destination = source
}
url { // *optional*
download_path = "/component1/component1-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}"
}
git {
// Setting the info to access a git repository. Ref is any valid git reference.
// If git repo information is provided, the *url* element above will be ignored.
repo = "https://github.com/apache/bigtop.git"
ref = "branch-name"
// *dir* defines the name of the top-level folder inside of the tar-ball archive.
// if set to null, the directory name will be set to tar-ball.dist without
// the .tar* suffix
// This setting is important to allow build to locate unpacked source code
dir = "${name}-${version.base}-src"
// *optional*
// You can setup repo-specific user credentials overriding any global settings
user = "john_doe"
token = "john's access token"
}
}
}
}
End of DSL Documentation */
bigtop {
/** Base Configuration of the mirror and archives */
version = "3.2.0-SNAPSHOT"
stack {
'jdk' { version = "1." + ( System.getenv('BIGTOP_JDK') ?: "8" ); version_base = version }
'scala' { version = '2.12.13'; version_base = version }
}
apache {
APACHE_MIRROR = "https://apache.osuosl.org"
APACHE_ARCHIVE = "https://archive.apache.org/dist"
}
/** End of Base Configuration */
/** Dependencies section defines the order in which packages should be built.
The syntax is as follows:
dependsOn := [list of dependents]
So, below phoenix ought to be build after the hbase has been built
To build a component with its dependencies, run build with -Dbuildwithdeps=true
*/
dependencies = [
'bigtop-utils':['ambari', 'bigtop-groovy', 'bigtop-jsvc',
'elasticsearch', 'flink', 'logstash', 'zookeeper'],
'bigtop-groovy':['hadoop'],
'bigtop-jsvc':['hadoop'],
zookeeper:['hadoop', 'hbase', 'kafka'],
hadoop:['hbase', 'hive', 'tez', 'sqoop',
'oozie', 'solr', 'spark', 'ranger',
'phoenix', 'alluxio', 'ycsb', 'zeppelin'
],
hbase:['phoenix', 'ycsb', 'hive'],
hive:['oozie', 'zeppelin'],
spark:['livy', 'oozie', 'zeppelin'],
]
components {
'zookeeper' {
name = 'zookeeper'
pkg = name
version {
base = '3.5.9'
pkg = base
release = 2
}
tarball {
source = "apache-zookeeper-${version.base}.tar.gz"
destination = source
}
url {
download_path = "/zookeeper/zookeeper-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}"
}
}
'hadoop' {
name = 'hadoop'
relNotes = 'Apache Hadoop'
version { base = '3.3.3'; pkg = base; release = 1 }
tarball { destination = "${name}-${version.base}.tar.gz"
source = "${name}-${version.base}-src.tar.gz" }
url { download_path = "/$name/common/$name-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'hbase' {
name = 'hbase'
relNotes = 'Apache HBase'
version { base = '2.4.11'; pkg = base; release = 1 }
tarball { destination = "${name}-${version.base}.tar.gz"
source = "${name}-${version.base}-src.tar.gz" }
url { download_path = "/$name/${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'hive' {
name = 'hive'
relNotes = 'Apache Hive'
version { base = '3.1.3'; pkg = base; release = 1 }
tarball { destination = "apache-${name}-${version.base}-src.tar.gz"
source = destination }
url { download_path = "/$name/$name-${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'tez' {
name = 'tez'
relNotes = 'Apache TEZ'
version { base = '0.10.1'; pkg = base; release = 1 }
tarball { destination = "apache-${name}-${version.base}-src.tar.gz"
source = destination }
url { download_path = "/$name/${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'sqoop' {
name = 'sqoop'
relNotes = 'Apache Sqoop v1'
version { base = '1.4.7'; pkg = base; release = 2 }
tarball { destination = "${name}-${version.base}.tar.gz"
source = destination }
url { download_path = "/$name/${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'oozie' {
name = 'oozie'
relNotes = 'Apache Oozie'
version { base = '5.2.1'; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz"
source = destination }
url { download_path = "/$name/${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'solr' {
name = 'solr'
relNotes = 'Apache Solr'
version { base = '8.11.1'; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}-src.tgz"
source = destination }
url { download_path = "lucene/$name/${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'spark' {
name = 'spark'
pkg = 'spark-core'
relNotes = 'Apache Spark'
/*
* Remember to fetch the new LICENSE-binary and licenses-binary files
* when upgrading spark version.
* See comments in [bigtop-packages/src/common/spark/install_spark.sh] for details.
*/
version { base = '3.2.1'; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "$name-${version.base}.tgz" }
url { download_path = "/$name/$name-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'flink' {
name = 'flink'
relNotes = 'Apache Flink'
version { base = '1.15.0'; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "$name-${version.base}-src.tgz" }
url { download_path = "/$name/$name-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'phoenix' {
name = 'phoenix'
relNotes = 'Apache Phoenix: A SQL skin over HBase'
version { base = "5.1.2"; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}-src.tar.gz"
source = destination }
url { download_path = "/$name/$name-${version.base}"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'bigtop-groovy' {
name = 'bigtop-groovy'
relNotes = "Groovy: a dynamic language for the Java platform"
version { base = '2.5.4'; pkg = '2.5.4'; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz";
source = "apache-groovy-binary-${version.base}.zip" }
url { download_path = "/groovy/${version.base}/distribution/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'bigtop-utils' {
name = "bigtop-utils"
relNotes = "Service package for Apache Bigtop runtime"
version { base = bigtop.version; pkg = base-"-SNAPSHOT"; release = 1 }
tarball { destination = "bigtop-utils-${version.base}.tar.gz" }
}
'bigtop-jsvc' {
name = "bigtop-jsvc"
relNotes = "Apache Common Daemon (jsvc) service package"
version { base = '1.2.4'; pkg = base; release = 1 }
tarball { source = "commons-daemon-${version.base}-native-src.tar.gz"
destination = "commons-daemon-${version.base}.tar.gz" }
url { download_path = "/commons/daemon/source"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'alluxio' {
name = "alluxio"
pkg = "alluxio"
relNotes = "Alluxio: a memory-centric distributed file system"
version { base = '2.4.1'; pkg = base; release = 2 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "v${version.base}.tar.gz" }
url { site = "https://github.com/Alluxio/alluxio/archive"
archive = site }
}
'kafka' {
name = 'kafka'
relNotes = 'Apache Kafka'
version { base = '2.8.1'; pkg = base; release = 2 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "$name-${version.base}-src.tgz" }
url { download_path = "/$name/${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'ycsb' {
name = 'ycsb'
relNotes = 'Yahoo! Cloud Serving Benchmark'
version { base = '0.17.0'; pkg = base; release = 2 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "${version.base}.tar.gz" }
url { site = "https://github.com/brianfrankcooper/YCSB/archive"
archive = site }
}
'zeppelin' {
name = 'zeppelin'
relNotes = 'Apache Zeppelin'
version { base = '0.10.0'; pkg = base; release = 2 }
tarball { source = "$name-${version.base}.tgz"
destination = "$name-${version.base}.tar.gz" }
url { download_path = "/$name/$name-${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'gpdb' {
name = 'gpdb'
relNotes = 'GreenPlum'
version { base = '5.28.5'; pkg = '5.28.5'; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "${version.base}.tar.gz" }
url { site = "https://github.com/greenplum-db/gpdb/archive/"
archive = site }
}
'ambari' {
name = 'ambari'
relNotes = 'Apache Ambari'
version { base = '2.7.5'; pkg = '2.7.5.0'; release = 1 }
tarball { destination = "apache-$name-${version.base}-src.tar.gz"
source = destination }
url { download_path = "/$name/$name-${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'bigtop-ambari-mpack' {
name = 'bigtop-ambari-mpack'
relNotes = 'Bigtop Mpack'
version { base = '2.7.5'; pkg = '2.7.5.0'; release = 1 }
tarball { destination = "apache-ambari-${version.base}-src.tar.gz"
source = destination }
url { download_path = "/ambari/ambari-${version.base}/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'livy' {
name = 'livy'
relNotes = 'Apache Livy'
version { base = '0.7.1'; pkg = base; release = 1 }
tarball { destination = "${name}-${version.base}.zip"
source = "apache-livy-${version.base}-incubating-src.zip" }
url { download_path = "incubator/livy/${version.base}-incubating/"
site = "${apache.APACHE_MIRROR}/${download_path}"
archive = "${apache.APACHE_ARCHIVE}/${download_path}" }
}
'elasticsearch' {
name = 'elasticsearch'
relNotes = 'Search and Analytics engine'
version { base = '5.6.14'; pkg = base; release = 2 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "v${version.base}.zip" }
url { site = "https://github.com/elastic/elasticsearch/archive"
archive = site }
}
'logstash' {
name = 'logstash'
relNotes = 'Data processing pipeline'
version { base = '5.4.1'; pkg = base; release = 2 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "v${version.base}.zip" }
url { site = "https://github.com/elastic/logstash/archive"
archive = site }
}
'kibana' {
name = 'kibana'
relNotes = 'A browser-based analytics and search dashboard'
version { base = '5.4.1'; pkg = base; release = 1 }
tarball { destination = "$name-${version.base}.tar.gz"
source = "v${version.base}.zip" }
url { site = "https://github.com/elastic/kibana/archive"
archive = site }
}
'ranger' {
name = 'ranger'
relNotes = 'Apache Ranger'
version { base = '2.2.0'; pkg = base; release = 1 }
tarball { destination = "release-$name-${version.base}.tar.gz"
source = destination }
url { site = "https://github.com/apache/ranger/archive/refs/tags"
archive = site }
}
}
}