我是靠谱客的博主 秀丽胡萝卜,这篇文章主要介绍presto编译,现在分享给大家,希望可以做个参考。

Requirements

  • Mac OS X or Linux
  • Java 8, 64-bit
  • Maven 3.1.1+ (for building)
  • Python 2.4+ (for running with the launcher script)

GIT:https://github.com/facebook/presto

编译:
复制代码
1
mvn clean install -DskipTests

复制代码
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
[jifeng@feng02 presto]$ mvn clean install -DskipTests [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] presto-root [INFO] presto-spi [INFO] presto-client [INFO] presto-parser [INFO] presto-tpch [INFO] presto-main [INFO] presto-tests [INFO] presto-kafka [INFO] presto-cassandra [INFO] presto-orc [INFO] presto-benchmark [INFO] presto-hive [INFO] presto-hive-hadoop1 [INFO] presto-hive-hadoop2 [INFO] presto-hive-cdh4 [INFO] presto-hive-cdh5 [INFO] presto-example-http [INFO] presto-raptor [INFO] presto-base-jdbc [INFO] presto-mysql [INFO] presto-postgresql [INFO] presto-ml [INFO] presto-jdbc [INFO] presto-cli [INFO] presto-benchmark-driver [INFO] presto-server [INFO] presto-docs [INFO] presto-verifier [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building presto-root 0.95-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ presto-root --- [INFO] Deleting /home/jifeng/presto/presto/target [INFO] [INFO] --- maven-checkstyle-plugin:2.11:check (default) @ presto-root --- [INFO] Starting audit... Audit done. ...... [INFO] Running Sphinx v1.1.3 [INFO] building [html]: all source files [INFO] updating environment: 107 added, 0 changed, 0 removed [INFO] reading sources... [ 0%] connector [INFO] reading sources... [ 1%] connector/cassandra [INFO] reading sources... [ 2%] connector/hive [INFO] reading sources... [ 3%] connector/jmx [INFO] reading sources... [ 4%] connector/kafka [INFO] reading sources... [ 5%] connector/kafka-tutorial [INFO] reading sources... [ 6%] connector/mysql [INFO] reading sources... [ 7%] connector/postgresql [INFO] reading sources... [ 8%] connector/sys [INFO] reading sources... [ 9%] connector/tpch [INFO] reading sources... [ 10%] develop [INFO] reading sources... [ 11%] develop/example-http [INFO] reading sources... [ 12%] develop/functions [INFO] reading sources... [ 13%] develop/spi-overview [INFO] reading sources... [ 14%] develop/types [INFO] reading sources... [ 14%] functions [INFO] reading sources... [ 15%] functions/aggregate [INFO] reading sources... [ 16%] functions/array [INFO] reading sources... [ 17%] functions/binary [INFO] reading sources... [ 18%] functions/color [INFO] reading sources... [ 19%] functions/comparison [INFO] reading sources... [ 20%] functions/conditional [INFO] reading sources... [ 21%] functions/conversion [INFO] reading sources... [ 22%] functions/datetime [INFO] reading sources... [ 23%] functions/json [INFO] reading sources... [ 24%] functions/logical [INFO] reading sources... [ 25%] functions/map [INFO] reading sources... [ 26%] functions/math [INFO] reading sources... [ 27%] functions/regexp [INFO] reading sources... [ 28%] functions/string [INFO] reading sources... [ 28%] functions/url [INFO] reading sources... [ 29%] functions/window [INFO] reading sources... [ 30%] index [INFO] reading sources... [ 31%] installation [INFO] reading sources... [ 32%] installation/benchmark-driver [INFO] reading sources... [ 33%] installation/cli [INFO] reading sources... [ 34%] installation/deployment [INFO] reading sources... [ 35%] installation/jdbc [INFO] reading sources... [ 36%] installation/verifier [INFO] reading sources... [ 37%] language [INFO] reading sources... [ 38%] language/types [INFO] reading sources... [ 39%] migration [INFO] reading sources... [ 40%] migration/from-hive [INFO] reading sources... [ 41%] overview [INFO] reading sources... [ 42%] overview/use-cases [INFO] reading sources... [ 42%] release [INFO] reading sources... [ 43%] release/release-0.54 [INFO] reading sources... [ 44%] release/release-0.55 [INFO] reading sources... [ 45%] release/release-0.56 [INFO] reading sources... [ 46%] release/release-0.57 [INFO] reading sources... [ 47%] release/release-0.58 [INFO] reading sources... [ 48%] release/release-0.59 [INFO] reading sources... [ 49%] release/release-0.60 [INFO] reading sources... [ 50%] release/release-0.61 [INFO] reading sources... [ 51%] release/release-0.62 [INFO] reading sources... [ 52%] release/release-0.63 [INFO] reading sources... [ 53%] release/release-0.64 [INFO] reading sources... [ 54%] release/release-0.65 [INFO] reading sources... [ 55%] release/release-0.66 [INFO] reading sources... [ 56%] release/release-0.67 [INFO] reading sources... [ 57%] release/release-0.68 [INFO] reading sources... [ 57%] release/release-0.69 [INFO] reading sources... [ 58%] release/release-0.70 [INFO] reading sources... [ 59%] release/release-0.71 [INFO] reading sources... [ 60%] release/release-0.72 [INFO] reading sources... [ 61%] release/release-0.73 [INFO] reading sources... [ 62%] release/release-0.74 [INFO] reading sources... [ 63%] release/release-0.75 [INFO] reading sources... [ 64%] release/release-0.76 [INFO] reading sources... [ 65%] release/release-0.77 [INFO] reading sources... [ 66%] release/release-0.78 [INFO] reading sources... [ 67%] release/release-0.79 [INFO] reading sources... [ 68%] release/release-0.80 [INFO] reading sources... [ 69%] release/release-0.81 [INFO] reading sources... [ 70%] release/release-0.82 [INFO] reading sources... [ 71%] release/release-0.83 [INFO] reading sources... [ 71%] release/release-0.84 [INFO] reading sources... [ 72%] release/release-0.85 [INFO] reading sources... [ 73%] release/release-0.86 [INFO] reading sources... [ 74%] release/release-0.87 [INFO] reading sources... [ 75%] release/release-0.88 [INFO] reading sources... [ 76%] release/release-0.89 [INFO] reading sources... [ 77%] release/release-0.90 [INFO] reading sources... [ 78%] release/release-0.91 [INFO] reading sources... [ 79%] release/release-0.92 [INFO] reading sources... [ 80%] release/release-0.93 [INFO] reading sources... [ 81%] release/release-0.94 [INFO] reading sources... [ 82%] sql [INFO] reading sources... [ 83%] sql/alter-table [INFO] reading sources... [ 84%] sql/create-table [INFO] reading sources... [ 85%] sql/create-view [INFO] reading sources... [ 85%] sql/describe [INFO] reading sources... [ 86%] sql/drop-table [INFO] reading sources... [ 87%] sql/drop-view [INFO] reading sources... [ 88%] sql/explain [INFO] reading sources... [ 89%] sql/insert [INFO] reading sources... [ 90%] sql/reset-session [INFO] reading sources... [ 91%] sql/select [INFO] reading sources... [ 92%] sql/set-session [INFO] reading sources... [ 93%] sql/show-catalogs [INFO] reading sources... [ 94%] sql/show-columns [INFO] reading sources... [ 95%] sql/show-functions [INFO] reading sources... [ 96%] sql/show-partitions [INFO] reading sources... [ 97%] sql/show-schemas [INFO] reading sources... [ 98%] sql/show-session [INFO] reading sources... [ 99%] sql/show-tables [INFO] reading sources... [100%] sql/use [INFO] [INFO] looking for now-outdated files... none found [INFO] pickling environment... done [INFO] checking consistency... done [INFO] preparing documents... done [INFO] writing output... [ 0%] connector [INFO] writing output... [ 1%] connector/cassandra [INFO] writing output... [ 2%] connector/hive [INFO] writing output... [ 3%] connector/jmx [INFO] writing output... [ 4%] connector/kafka [INFO] writing output... [ 5%] connector/kafka-tutorial [INFO] writing output... [ 6%] connector/mysql [INFO] writing output... [ 7%] connector/postgresql [INFO] writing output... [ 8%] connector/sys [INFO] writing output... [ 9%] connector/tpch [INFO] writing output... [ 10%] develop [INFO] writing output... [ 11%] develop/example-http [INFO] writing output... [ 12%] develop/functions [INFO] writing output... [ 13%] develop/spi-overview [INFO] writing output... [ 14%] develop/types [INFO] writing output... [ 14%] functions [INFO] writing output... [ 15%] functions/aggregate [INFO] writing output... [ 16%] functions/array [INFO] writing output... [ 17%] functions/binary [INFO] writing output... [ 18%] functions/color [INFO] writing output... [ 19%] functions/comparison [INFO] writing output... [ 20%] functions/conditional [INFO] writing output... [ 21%] functions/conversion [INFO] writing output... [ 22%] functions/datetime [INFO] writing output... [ 23%] functions/json [INFO] writing output... [ 24%] functions/logical [INFO] writing output... [ 25%] functions/map [INFO] writing output... [ 26%] functions/math [INFO] writing output... [ 27%] functions/regexp [INFO] writing output... [ 28%] functions/string [INFO] writing output... [ 28%] functions/url [INFO] writing output... [ 29%] functions/window [INFO] writing output... [ 30%] index [INFO] writing output... [ 31%] installation [INFO] writing output... [ 32%] installation/benchmark-driver [INFO] writing output... [ 33%] installation/cli [INFO] writing output... [ 34%] installation/deployment [INFO] writing output... [ 35%] installation/jdbc [INFO] writing output... [ 36%] installation/verifier [INFO] writing output... [ 37%] language [INFO] writing output... [ 38%] language/types [INFO] writing output... [ 39%] migration [INFO] writing output... [ 40%] migration/from-hive [INFO] writing output... [ 41%] overview [INFO] writing output... [ 42%] overview/use-cases [INFO] writing output... [ 42%] release [INFO] writing output... [ 43%] release/release-0.54 [INFO] writing output... [ 44%] release/release-0.55 [INFO] writing output... [ 45%] release/release-0.56 [INFO] writing output... [ 46%] release/release-0.57 [INFO] writing output... [ 47%] release/release-0.58 [INFO] writing output... [ 48%] release/release-0.59 [INFO] writing output... [ 49%] release/release-0.60 [INFO] writing output... [ 50%] release/release-0.61 [INFO] writing output... [ 51%] release/release-0.62 [INFO] writing output... [ 52%] release/release-0.63 [INFO] writing output... [ 53%] release/release-0.64 [INFO] writing output... [ 54%] release/release-0.65 [INFO] writing output... [ 55%] release/release-0.66 [INFO] writing output... [ 56%] release/release-0.67 [INFO] writing output... [ 57%] release/release-0.68 [INFO] writing output... [ 57%] release/release-0.69 [INFO] writing output... [ 58%] release/release-0.70 [INFO] writing output... [ 59%] release/release-0.71 [INFO] writing output... [ 60%] release/release-0.72 [INFO] writing output... [ 61%] release/release-0.73 [INFO] writing output... [ 62%] release/release-0.74 [INFO] writing output... [ 63%] release/release-0.75 [INFO] writing output... [ 64%] release/release-0.76 [INFO] writing output... [ 65%] release/release-0.77 [INFO] writing output... [ 66%] release/release-0.78 [INFO] writing output... [ 67%] release/release-0.79 [INFO] writing output... [ 68%] release/release-0.80 [INFO] writing output... [ 69%] release/release-0.81 [INFO] writing output... [ 70%] release/release-0.82 [INFO] writing output... [ 71%] release/release-0.83 [INFO] writing output... [ 71%] release/release-0.84 [INFO] writing output... [ 72%] release/release-0.85 [INFO] writing output... [ 73%] release/release-0.86 [INFO] writing output... [ 74%] release/release-0.87 [INFO] writing output... [ 75%] release/release-0.88 [INFO] writing output... [ 76%] release/release-0.89 [INFO] writing output... [ 77%] release/release-0.90 [INFO] writing output... [ 78%] release/release-0.91 [INFO] writing output... [ 79%] release/release-0.92 [INFO] writing output... [ 80%] release/release-0.93 [INFO] writing output... [ 81%] release/release-0.94 [INFO] writing output... [ 82%] sql [INFO] writing output... [ 83%] sql/alter-table [INFO] writing output... [ 84%] sql/create-table [INFO] writing output... [ 85%] sql/create-view [INFO] writing output... [ 85%] sql/describe [INFO] writing output... [ 86%] sql/drop-table [INFO] writing output... [ 87%] sql/drop-view [INFO] writing output... [ 88%] sql/explain [INFO] writing output... [ 89%] sql/insert [INFO] writing output... [ 90%] sql/reset-session [INFO] writing output... [ 91%] sql/select [INFO] writing output... [ 92%] sql/set-session [INFO] writing output... [ 93%] sql/show-catalogs [INFO] writing output... [ 94%] sql/show-columns [INFO] writing output... [ 95%] sql/show-functions [INFO] writing output... [ 96%] sql/show-partitions [INFO] writing output... [ 97%] sql/show-schemas [INFO] writing output... [ 98%] sql/show-session [INFO] writing output... [ 99%] sql/show-tables [INFO] writing output... [100%] sql/use [INFO] [INFO] writing additional files... genindex search [INFO] copying images... [100%] functions/../images/functions_color_bar.png [INFO] [INFO] copying static files... done [INFO] dumping search index... done [INFO] dumping object inventory... done [INFO] build succeeded. [INFO] [INFO] --- maven-assembly-plugin:2.4:single (docs) @ presto-docs --- Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.pom (3 KB at 1.9 KB/sec) Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar Downloaded: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.0.6/plexus-io-2.0.6.jar (57 KB at 53.0 KB/sec) [INFO] Reading assembly descriptor: src/main/assembly/docs.xml [INFO] Building zip: /home/jifeng/presto/presto/presto-docs/target/presto-docs-0.95-SNAPSHOT.zip [INFO] [INFO] --- maven-assembly-plugin:2.4:single (sources) @ presto-docs --- [INFO] Reading assembly descriptor: src/main/assembly/sources.xml [INFO] Building jar: /home/jifeng/presto/presto/presto-docs/target/presto-docs-0.95-SNAPSHOT-sources.jar [INFO] [INFO] >>> findbugs-maven-plugin:2.5.2:check (default) > :findbugs @ presto-docs >>> [INFO] [INFO] --- findbugs-maven-plugin:2.5.2:findbugs (findbugs) @ presto-docs --- [INFO] [INFO] <<< findbugs-maven-plugin:2.5.2:check (default) < :findbugs @ presto-docs <<< [INFO] [INFO] --- findbugs-maven-plugin:2.5.2:check (default) @ presto-docs --- [INFO] [INFO] >>> maven-pmd-plugin:3.0.1:check (default) > :pmd @ presto-docs >>> [INFO] [INFO] --- maven-pmd-plugin:3.0.1:pmd (pmd) @ presto-docs --- [INFO] [INFO] <<< maven-pmd-plugin:3.0.1:check (default) < :pmd @ presto-docs <<< [INFO] [INFO] --- maven-pmd-plugin:3.0.1:check (default) @ presto-docs --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ presto-docs --- [INFO] Installing /home/jifeng/presto/presto/presto-docs/pom.xml to /home/jifeng/.m2/repository/com/facebook/presto/presto-docs/0.95-SNAPSHOT/presto-docs-0.95-SNAPSHOT.pom [INFO] Installing /home/jifeng/presto/presto/presto-docs/target/presto-docs-0.95-SNAPSHOT.zip to /home/jifeng/.m2/repository/com/facebook/presto/presto-docs/0.95-SNAPSHOT/presto-docs-0.95-SNAPSHOT.zip [INFO] Installing /home/jifeng/presto/presto/presto-docs/target/presto-docs-0.95-SNAPSHOT-sources.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-docs/0.95-SNAPSHOT/presto-docs-0.95-SNAPSHOT-sources.jar [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building presto-verifier 0.95-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ presto-verifier --- [INFO] [INFO] --- maven-checkstyle-plugin:2.11:check (default) @ presto-verifier --- [INFO] Starting audit... Audit done. [INFO] [INFO] --- maven-enforcer-plugin:1.2:enforce (default) @ presto-verifier --- [INFO] [INFO] --- maven-enforcer-plugin:1.2:enforce (enforce-maven) @ presto-verifier --- [INFO] [INFO] --- maven-dependency-versions-check-plugin:2.0.2:check (default) @ presto-verifier --- [INFO] Checking dependency versions [INFO] [INFO] --- license-maven-plugin:2.3:check (default) @ presto-verifier --- [INFO] Checking licenses... [INFO] [INFO] --- jacoco-maven-plugin:0.6.2.201302030002:prepare-agent (default) @ presto-verifier --- [INFO] Skipping JaCoCo execution [INFO] argLine set to [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ presto-verifier --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /home/jifeng/presto/presto/presto-verifier/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.0:compile (default-compile) @ presto-verifier --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 16 source files to /home/jifeng/presto/presto/presto-verifier/target/classes [WARNING] 来自注释处理程序 'org.antlr.v4.runtime.misc.NullUsageProcessor' 的受支持 source 版本 'RELEASE_6' 低于 -source '1.8' [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ presto-verifier --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /home/jifeng/presto/presto/presto-verifier/src/test/resources [INFO] [INFO] --- maven-compiler-plugin:3.0:testCompile (default-testCompile) @ presto-verifier --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /home/jifeng/presto/presto/presto-verifier/target/test-classes [WARNING] 来自注释处理程序 'org.antlr.v4.runtime.misc.NullUsageProcessor' 的受支持 source 版本 'RELEASE_6' 低于 -source '1.8' [INFO] [INFO] --- modernizer-maven-plugin:1.2.2:modernizer (modernizer) @ presto-verifier --- [INFO] [INFO] --- maven-dependency-plugin:2.10:analyze-only (default) @ presto-verifier --- [INFO] No dependency problems found [INFO] [INFO] --- maven-dependency-plugin:2.10:analyze-duplicate (default) @ presto-verifier --- [INFO] No duplicate dependencies found in <dependencies/> or in <dependencyManagement/> [INFO] [INFO] --- maven-dependency-plugin:2.10:analyze-dep-mgt (default) @ presto-verifier --- [INFO] Found Resolved Dependency / DependencyManagement mismatches: [INFO] Ignoring Direct Dependencies. [INFO] it.unimi.dsi:fastutil:jar was excluded in DepMgt, but version 6.5.9 has been found in the dependency tree. [INFO] org.apache.commons:commons-lang3:jar was excluded in DepMgt, but version 3.1 has been found in the dependency tree. [WARNING] Potential problems found in Dependency Management [INFO] [INFO] --- maven-duplicate-finder-plugin:1.0.6:check (default) @ presto-verifier --- [INFO] Checking compile classpath [INFO] Checking runtime classpath [INFO] Checking test classpath [INFO] [INFO] --- maven-surefire-plugin:2.14:test (default-test) @ presto-verifier --- [INFO] Tests are skipped. [INFO] [INFO] --- jacoco-maven-plugin:0.6.2.201302030002:report (report) @ presto-verifier --- [INFO] Skipping JaCoCo execution [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ presto-verifier --- [INFO] Building jar: /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT.jar [INFO] [INFO] --- maven-jar-plugin:2.4:test-jar (attach-tests) @ presto-verifier --- [INFO] Building jar: /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-tests.jar [INFO] [INFO] --- maven-source-plugin:2.2.1:jar-no-fork (attach-sources) @ presto-verifier --- [INFO] Building jar: /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-sources.jar [INFO] [INFO] --- maven-source-plugin:2.2.1:test-jar-no-fork (attach-sources) @ presto-verifier --- [INFO] Building jar: /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-test-sources.jar [INFO] [INFO] --- maven-shade-plugin:2.3:shade (default) @ presto-verifier --- [WARNING] Map in class org.apache.maven.plugins.shade.resource.ManifestResourceTransformer declares value type as: class java.util.jar.Attributes but saw: class java.lang.String at runtime [INFO] Including com.facebook.presto:presto-main:jar:0.95-SNAPSHOT in the shaded jar. [INFO] Including org.jruby.joni:joni:jar:2.0.0 in the shaded jar. [INFO] Including org.jruby.jcodings:jcodings:jar:1.0.8 in the shaded jar. [INFO] Including it.unimi.dsi:fastutil:jar:6.5.9 in the shaded jar. [INFO] Including org.apache.commons:commons-math3:jar:3.2 in the shaded jar. [INFO] Including com.facebook.presto:presto-spi:jar:0.95-SNAPSHOT in the shaded jar. [INFO] Including com.facebook.presto:presto-client:jar:0.95-SNAPSHOT in the shaded jar. [INFO] Including com.facebook.presto:presto-parser:jar:0.95-SNAPSHOT in the shaded jar. [INFO] Including org.antlr:antlr4-runtime:jar:4.3 in the shaded jar. [INFO] Including org.abego.treelayout:org.abego.treelayout.core:jar:1.0.1 in the shaded jar. [INFO] Including org.antlr:antlr4-annotations:jar:4.3 in the shaded jar. [INFO] Including io.airlift:slice:jar:0.10 in the shaded jar. [INFO] Including io.airlift:concurrent:jar:0.103 in the shaded jar. [INFO] Including io.airlift:node:jar:0.103 in the shaded jar. [INFO] Including io.airlift:json:jar:0.103 in the shaded jar. [INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.4.4 in the shaded jar. [INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.4.4 in the shaded jar. [INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-guava:jar:2.4.4 in the shaded jar. [INFO] Including com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.4 in the shaded jar. [INFO] Including io.airlift:discovery:jar:0.103 in the shaded jar. [INFO] Including io.airlift:http-server:jar:0.103 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-http:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-io:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-server:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-util:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-servlet:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-servlets:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-continuation:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-security:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-jmx:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including ch.qos.logback:logback-core:jar:1.0.13 in the shaded jar. [INFO] Including io.airlift:jaxrs:jar:0.103 in the shaded jar. [INFO] Including org.glassfish.jersey.core:jersey-common:jar:2.12 in the shaded jar. [INFO] Including org.glassfish.jersey.bundles.repackaged:jersey-guava:jar:2.12 in the shaded jar. [INFO] Including org.glassfish.hk2:hk2-api:jar:2.3.0-b10 in the shaded jar. [INFO] Including org.glassfish.hk2:hk2-utils:jar:2.3.0-b10 in the shaded jar. [INFO] Including org.glassfish.hk2:hk2-locator:jar:2.3.0-b10 in the shaded jar. [INFO] Including org.javassist:javassist:jar:3.18.1-GA in the shaded jar. [INFO] Including org.glassfish.hk2:osgi-resource-locator:jar:1.0.1 in the shaded jar. [INFO] Including org.glassfish.jersey.core:jersey-server:jar:2.12 in the shaded jar. [INFO] Including org.glassfish.jersey.core:jersey-client:jar:2.12 in the shaded jar. [INFO] Including org.glassfish.jersey.containers:jersey-container-servlet-core:jar:2.12 in the shaded jar. [INFO] Including com.fasterxml.jackson.dataformat:jackson-dataformat-smile:jar:2.4.4 in the shaded jar. [INFO] Including io.airlift:jmx:jar:0.103 in the shaded jar. [INFO] Including io.airlift:jmx-http:jar:0.103 in the shaded jar. [INFO] Including io.airlift:log-manager:jar:0.103 in the shaded jar. [INFO] Including org.slf4j:jul-to-slf4j:jar:1.7.5 in the shaded jar. [INFO] Including org.slf4j:log4j-over-slf4j:jar:1.7.5 in the shaded jar. [INFO] Including org.slf4j:jcl-over-slf4j:jar:1.7.5 in the shaded jar. [INFO] Including org.slf4j:slf4j-api:jar:1.7.5 in the shaded jar. [INFO] Including ch.qos.logback:logback-classic:jar:1.0.13 in the shaded jar. [INFO] Including io.airlift.resolver:resolver:jar:1.1 in the shaded jar. [INFO] Including org.sonatype.aether:aether-spi:jar:1.13.1 in the shaded jar. [INFO] Including org.sonatype.aether:aether-impl:jar:1.13.1 in the shaded jar. [INFO] Including org.sonatype.aether:aether-util:jar:1.13.1 in the shaded jar. [INFO] Including org.sonatype.aether:aether-connector-file:jar:1.13.1 in the shaded jar. [INFO] Including org.sonatype.aether:aether-connector-asynchttpclient:jar:1.13.1 in the shaded jar. [INFO] Including com.ning:async-http-client:jar:1.6.5 in the shaded jar. [INFO] Including io.netty:netty:jar:3.7.0.Final in the shaded jar. [INFO] Including org.apache.maven:maven-core:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-settings:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-settings-builder:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-repository-metadata:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-plugin-api:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-model-builder:jar:3.0.4 in the shaded jar. [INFO] Including org.codehaus.plexus:plexus-interpolation:jar:1.14 in the shaded jar. [INFO] Including org.codehaus.plexus:plexus-utils:jar:2.0.6 in the shaded jar. [INFO] Including org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 in the shaded jar. [INFO] Including org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3 in the shaded jar. [INFO] Including org.apache.maven:maven-model:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-artifact:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-aether-provider:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-embedder:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven:maven-compat:jar:3.0.4 in the shaded jar. [INFO] Including org.apache.maven.wagon:wagon-provider-api:jar:2.2 in the shaded jar. [INFO] Including org.sonatype.plexus:plexus-cipher:jar:1.7 in the shaded jar. [INFO] Including org.codehaus.plexus:plexus-container-default:jar:1.5.5 in the shaded jar. [INFO] Including org.apache.xbean:xbean-reflect:jar:3.4 in the shaded jar. [INFO] Including org.codehaus.plexus:plexus-classworlds:jar:2.4 in the shaded jar. [INFO] Including io.airlift:stats:jar:0.103 in the shaded jar. [INFO] Including io.airlift:trace-token:jar:0.103 in the shaded jar. [INFO] Including io.airlift.discovery:discovery-server:jar:1.22 in the shaded jar. [INFO] Including io.airlift:jmx-http-rpc:jar:0.103 in the shaded jar. [INFO] Including org.iq80.leveldb:leveldb-api:jar:0.7 in the shaded jar. [INFO] Including org.iq80.leveldb:leveldb:jar:0.7 in the shaded jar. [INFO] Including org.openjdk.jol:jol-core:jar:0.2 in the shaded jar. [INFO] Including javax.servlet:javax.servlet-api:jar:3.1.0 in the shaded jar. [INFO] Including javax.annotation:javax.annotation-api:jar:1.2 in the shaded jar. [INFO] Including javax.ws.rs:javax.ws.rs-api:jar:2.0.1 in the shaded jar. [INFO] Including com.fasterxml.jackson.core:jackson-annotations:jar:2.4.4 in the shaded jar. [INFO] Including com.fasterxml.jackson.core:jackson-databind:jar:2.4.4 in the shaded jar. [INFO] Including org.weakref:jmxutils:jar:1.18 in the shaded jar. [INFO] Including io.airlift:http-client:jar:0.103 in the shaded jar. [INFO] Including org.eclipse.jetty:jetty-client:jar:9.2.8.v20150217 in the shaded jar. [INFO] Including org.sonatype.aether:aether-api:jar:1.13.1 in the shaded jar. [INFO] Including org.ow2.asm:asm-all:jar:4.1 in the shaded jar. [INFO] Including com.facebook.presto:presto-jdbc:jar:0.95-SNAPSHOT in the shaded jar. [INFO] Including com.fasterxml.jackson.core:jackson-core:jar:2.4.4 in the shaded jar. [INFO] Including javax.inject:javax.inject:jar:1 in the shaded jar. [INFO] Including com.google.inject.extensions:guice-multibindings:jar:3.0 in the shaded jar. [INFO] Including com.google.inject:guice:jar:3.0 in the shaded jar. [INFO] Including aopalliance:aopalliance:jar:1.0 in the shaded jar. [INFO] Including io.airlift:bootstrap:jar:0.103 in the shaded jar. [INFO] Including io.airlift:log:jar:0.103 in the shaded jar. [INFO] Including io.airlift:event:jar:0.103 in the shaded jar. [INFO] Including org.jdbi:jdbi:jar:2.55 in the shaded jar. [INFO] Including mysql:mysql-connector-java:jar:5.1.25 in the shaded jar. [INFO] Including javax.validation:validation-api:jar:1.1.0.Final in the shaded jar. [INFO] Including io.airlift:configuration:jar:0.103 in the shaded jar. [INFO] Including org.apache.bval:bval-jsr303:jar:0.5 in the shaded jar. [INFO] Including org.apache.bval:bval-core:jar:0.5 in the shaded jar. [INFO] Including commons-beanutils:commons-beanutils-core:jar:1.8.3 in the shaded jar. [INFO] Including org.apache.commons:commons-lang3:jar:3.1 in the shaded jar. [INFO] Including cglib:cglib-nodep:jar:2.2.2 in the shaded jar. [INFO] Including io.airlift:units:jar:0.103 in the shaded jar. [INFO] Including com.google.guava:guava:jar:18.0 in the shaded jar. [INFO] Including com.google.code.findbugs:annotations:jar:2.0.3 in the shaded jar. [INFO] Including joda-time:joda-time:jar:2.4 in the shaded jar. [INFO] Attaching shaded artifact. [INFO] [INFO] --- really-executable-jar-maven-plugin:1.0.5:really-executable-jar (default) @ presto-verifier --- [INFO] [INFO] >>> findbugs-maven-plugin:2.5.2:check (default) > :findbugs @ presto-verifier >>> [INFO] [INFO] --- findbugs-maven-plugin:2.5.2:findbugs (findbugs) @ presto-verifier --- [INFO] [INFO] <<< findbugs-maven-plugin:2.5.2:check (default) < :findbugs @ presto-verifier <<< [INFO] [INFO] --- findbugs-maven-plugin:2.5.2:check (default) @ presto-verifier --- [INFO] [INFO] >>> maven-pmd-plugin:3.0.1:check (default) > :pmd @ presto-verifier >>> [INFO] [INFO] --- maven-pmd-plugin:3.0.1:pmd (pmd) @ presto-verifier --- [INFO] [INFO] <<< maven-pmd-plugin:3.0.1:check (default) < :pmd @ presto-verifier <<< [INFO] [INFO] --- maven-pmd-plugin:3.0.1:check (default) @ presto-verifier --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ presto-verifier --- [INFO] Installing /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT.jar [INFO] Installing /home/jifeng/presto/presto/presto-verifier/pom.xml to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT.pom [INFO] Installing /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-tests.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT-tests.jar [INFO] Installing /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-sources.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT-sources.jar [INFO] Installing /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-test-sources.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT-test-sources.jar [INFO] Installing /home/jifeng/presto/presto/presto-verifier/target/presto-verifier-0.95-SNAPSHOT-executable.jar to /home/jifeng/.m2/repository/com/facebook/presto/presto-verifier/0.95-SNAPSHOT/presto-verifier-0.95-SNAPSHOT-executable.jar [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary: [INFO] [INFO] presto-root ........................................ SUCCESS [ 10.568 s] [INFO] presto-spi ......................................... SUCCESS [ 14.002 s] [INFO] presto-client ...................................... SUCCESS [ 4.026 s] [INFO] presto-parser ...................................... SUCCESS [ 9.324 s] [INFO] presto-tpch ........................................ SUCCESS [ 2.108 s] [INFO] presto-main ........................................ SUCCESS [ 49.017 s] [INFO] presto-tests ....................................... SUCCESS [ 27.733 s] [INFO] presto-kafka ....................................... SUCCESS [ 41.541 s] [INFO] presto-cassandra ................................... SUCCESS [01:30 min] [INFO] presto-orc ......................................... SUCCESS [ 52.362 s] [INFO] presto-benchmark ................................... SUCCESS [ 4.164 s] [INFO] presto-hive ........................................ SUCCESS [ 43.305 s] [INFO] presto-hive-hadoop1 ................................ SUCCESS [ 19.582 s] [INFO] presto-hive-hadoop2 ................................ SUCCESS [ 34.177 s] [INFO] presto-hive-cdh4 ................................... SUCCESS [ 5.443 s] [INFO] presto-hive-cdh5 ................................... SUCCESS [ 10.785 s] [INFO] presto-example-http ................................ SUCCESS [ 2.512 s] [INFO] presto-raptor ...................................... SUCCESS [ 21.065 s] [INFO] presto-base-jdbc ................................... SUCCESS [ 4.677 s] [INFO] presto-mysql ....................................... SUCCESS [02:09 min] [INFO] presto-postgresql .................................. SUCCESS [ 38.993 s] [INFO] presto-ml .......................................... SUCCESS [ 6.649 s] [INFO] presto-jdbc ........................................ SUCCESS [01:02 min] [INFO] presto-cli ......................................... SUCCESS [ 18.183 s] [INFO] presto-benchmark-driver ............................ SUCCESS [ 3.449 s] [INFO] presto-server ...................................... SUCCESS [01:27 min] [INFO] presto-docs ........................................ SUCCESS [02:46 min] [INFO] presto-verifier .................................... SUCCESS [ 13.015 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 16:17 min [INFO] Finished at: 2015-02-20T22:34:01+08:00 [INFO] Final Memory: 148M/454M [INFO] ------------------------------------------------------------------------ [jifeng@feng02 presto]$ ls CONTRIBUTING.md presto-docs presto-main presto-tests LICENSE presto-example-http presto-ml presto-tpch pom.xml presto-hive presto-mysql presto-verifier presto-base-jdbc presto-hive-cdh4 presto-orc README.md presto-benchmark presto-hive-cdh5 presto-parser src presto-benchmark-driver presto-hive-hadoop1 presto-postgresql target presto-cassandra presto-hive-hadoop2 presto-raptor presto-cli presto-jdbc presto-server presto-client presto-kafka presto-spi

查看

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[jifeng@feng02 presto]$ cd target [jifeng@feng02 target]$ ls checkstyle-cachefile checkstyle-checker.xml checkstyle-header.txt checkstyle-result.xml [jifeng@feng02 target]$ cd .. [jifeng@feng02 presto]$ cd presto-main/ [jifeng@feng02 presto-main]$ ls etc pom.xml src target [jifeng@feng02 presto-main]$ cd target/ [jifeng@feng02 target]$ ls checkstyle-cachefile maven-status checkstyle-checker.xml presto-main-0.95-SNAPSHOT.jar checkstyle-header.txt presto-main-0.95-SNAPSHOT-sources.jar checkstyle-result.xml presto-main-0.95-SNAPSHOT-tests.jar classes presto-main-0.95-SNAPSHOT-test-sources.jar generated-sources site generated-test-sources test-classes maven-archiver


http://prestodb-china.com/


安装包:

https://repo1.maven.org/maven2/com/facebook/presto/presto-server/

最后

以上就是秀丽胡萝卜最近收集整理的关于presto编译的全部内容,更多相关presto编译内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部