forked from xuechendi/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
725 lines (653 loc) · 18.8 KB
/
docker-compose.yml
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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
# 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.
# Development containers for Arrow
version: '3.5'
# TODO(kszucs): set arrow's mount to :ro mode, once all of the builds are
# passing without write access to the source directory. The following builds
# are contaminating the source directory:
# - docs
# - python-alpine (writes .egg directory)
# - rust (writes Cargo.lock)
# - java (without the rsync trick)
x-ubuntu-volumes:
&ubuntu-volumes
- .:/arrow:delegated
- ubuntu-cache:/build:delegated
x-ubuntu-trusty-volumes:
&ubuntu-trusty-volumes
- .:/arrow:delegated
- ubuntu-trusty-cache:/build:delegated
x-ubuntu-xenial-volumes:
&ubuntu-xenial-volumes
- .:/arrow:delegated
- ubuntu-xenial-cache:/build:delegated
x-ubuntu-bionic-volumes:
&ubuntu-bionic-volumes
- .:/arrow:delegated
- ubuntu-bionic-cache:/build:delegated
x-alpine-volumes:
&alpine-volumes
- .:/arrow:delegated
- alpine-cache:/build:delegated
x-fedora-volumes:
&fedora-volumes
- .:/arrow:delegated
- fedora-cache:/build:delegated
x-debian-testing-volumes:
&debian-testing-volumes
- .:/arrow:delegated
- debian-testing-cache:/build:delegated
volumes:
ubuntu-cache:
ubuntu-trusty-cache:
ubuntu-xenial-cache:
ubuntu-bionic-cache:
alpine-cache:
fedora-cache:
debian-testing-cache:
maven-cache:
spark-cache:
services:
######################### Helper Containers #################################
build-context:
# The performance of the docker containers often depends on the size of the
# build context. This is a helper container that adds the full build context
# into the /context folder.
#
# One can inspect the folder and add files that should not be in the context
# to .dockerignore.
#
# Usage:
# docker-compose build build-context
# docker-compose run build-context
image: arrow:build-context
build:
context: .
dockerfile: dev/Dockerfile.context
######################### Language Containers ###############################
c_glib:
# Usage:
# docker-compose build cpp
# docker-compose build c_glib
# docker-compose run c_glib
image: arrow:c_glib
build:
context: .
dockerfile: c_glib/Dockerfile
volumes: *ubuntu-volumes
cpp:
# Usage:
# docker-compose build cpp
# docker-compose run cpp
image: arrow:cpp
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile
volumes: *ubuntu-volumes
cpp-system-deps:
# Usage:
# docker-compose build cpp-system-deps
# docker-compose run cpp-system-deps
image: ursalab/arrow:cpp-system-deps
shm_size: 2G
cap_add:
# LeakSanitizer and gdb requires ptrace(2)
- SYS_PTRACE
build:
context: .
dockerfile: cpp/Dockerfile.ubuntu-bionic
args:
LLVM_VERSION: 7
environment:
ARROW_FLIGHT: "ON"
ARROW_USE_ASAN: "ON"
ARROW_USE_UBSAN: "ON"
volumes:
- .:/arrow:delegated
- ubuntu-cache:/build:delegated
- ${HOME}/.ccache:/build/ccache:cached
cpp-release:
# Usage:
# docker-compose build cpp
# docker-compose run cpp-release
image: arrow:cpp
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile
environment:
ARROW_BUILD_TYPE: release
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-volumes
cpp-static-only:
# Usage:
# docker-compose build cpp
# docker-compose run cpp-static-only
image: arrow:cpp
shm_size: 2G
environment:
ARROW_BUILD_SHARED: "OFF"
ARROW_TEST_LINKAGE: "static"
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-volumes
cpp-shared-only:
# Usage:
# docker-compose build cpp
# docker-compose run cpp-static-only
image: arrow:cpp
shm_size: 2G
environment:
ARROW_BUILD_STATIC: "OFF"
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-volumes
cpp-cmake32:
# Usage:
# docker-compose build cpp-cmake32
# docker-compose run cpp-cmake32
image: arrow:cpp-cmake32
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.cmake
args:
CMAKE_VERSION: 3.2.3
environment:
# Vendor boost to avoid dealing with stale FindBoost.
ARROW_BOOST_SOURCE: "BUNDLED"
ARROW_ORC: "OFF"
# uriparser requires cmake 3.3
ARROW_FLIGHT: "OFF"
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-volumes
cpp-alpine:
# Usage:
# docker-compose build cpp-alpine
# docker-compose run cpp-alpine
image: arrow:cpp-alpine
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.alpine
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *alpine-volumes
cpp-fedora:
# Usage:
# docker-compose build cpp-fedora
# docker-compose run cpp-fedora
image: arrow:cpp-fedora
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.fedora
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *fedora-volumes
cpp-debian-testing:
# Usage:
# docker-compose build cpp-debian-testing
# docker-compose run cpp-debian-testing
image: arrow:cpp-debian-testing
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.debian-testing
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *debian-testing-volumes
cpp-ubuntu-trusty:
# Usage:
# docker-compose build cpp-ubuntu-trusty
# docker-compose run cpp-ubuntu-trusty
image: arrow:cpp-ubuntu-trusty
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.ubuntu-trusty
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-trusty-volumes
cpp-ubuntu-xenial:
# Usage:
# docker-compose build cpp-ubuntu-xenial
# docker-compose run cpp-ubuntu-xenial
image: arrow:cpp-ubuntu-xenial
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.ubuntu-xenial
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-xenial-volumes
cpp-minimum-boost-version:
# Ubuntu Xenial 16.04 has Boost 1.58, our minimum version
#
# Usage:
# docker-compose build cpp-minimum-boost-version
# docker-compose run cpp-minimum-boost-version
image: arrow:cpp-ubuntu-xenial
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.ubuntu-xenial
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
ARROW_BOOST_SOURCE: "SYSTEM"
ARROW_FLIGHT: "OFF"
volumes: *ubuntu-xenial-volumes
cpp-ubuntu-bionic:
# Usage:
# docker-compose build cpp-ubuntu-bionic
# docker-compose run cpp-ubuntu-bionic
image: arrow:cpp-ubuntu-bionic
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile.ubuntu-bionic
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-bionic-volumes
go:
# Usage:
# docker-compose build go
# docker-compose run go
image: arrow:go
build:
context: .
dockerfile: go/Dockerfile
volumes: *ubuntu-volumes
java:
# Usage:
# docker-compose build java
# docker-compose run java
image: arrow:java
build:
context: .
dockerfile: java/Dockerfile
volumes:
- .:/arrow:ro # ensures that docker won't contaminate the host directory
- maven-cache:/root/.m2:delegated
java-all-jdks:
# Usage:
# docker-compose build java-all-jdks
# docker-compose run java-all-jdks
image: ursalab/arrow-ci-java-all-jdks:latest
build:
context: .
dockerfile: java/Dockerfile.all-jdks
volumes:
- .:/arrow:ro # ensures that docker won't contaminate the host directory
- maven-cache:/root/.m2:delegated
js:
image: arrow:js
build:
context: .
dockerfile: js/Dockerfile
python:
# Usage:
# export PYTHON_VERSION=2.7|3.6|3.7
# docker-compose build cpp
# docker-compose build python
# docker-compose run python
image: arrow:python-${PYTHON_VERSION:-3.6}
shm_size: 2G
build:
context: .
dockerfile: python/Dockerfile
args:
PYTHON_VERSION: ${PYTHON_VERSION:-3.6}
volumes: *ubuntu-volumes
python-alpine:
# Usage:
# export PYTHON_VERSION=2.7|3.6 (minor version is ignored)
# docker-compose build cpp-alpine
# docker-compose build python-alpine
# docker-compose run python-alpine
image: arrow:python-${PYTHON_VERSION:-3.6}-alpine
shm_size: 2G
build:
context: .
dockerfile: python/Dockerfile.alpine
args:
PYTHON_VERSION: ${PYTHON_VERSION:-3.6}
volumes: *alpine-volumes
python-nopandas:
# Usage:
# export PYTHON_VERSION=2.7|3.6|3.7
# docker-compose build cpp
# docker-compose build python
# docker-compose build python-nopandas
# docker-compose run python-nopandas
image: arrow:python-${PYTHON_VERSION:-3.6}-nopandas
shm_size: 2G
build:
context: .
dockerfile: python/Dockerfile.nopandas
args:
PYTHON_VERSION: ${PYTHON_VERSION:-3.6}
volumes: *ubuntu-volumes
rust:
# Usage:
# docker-compose build rust
# docker-compose run rust
image: arrow:rust
build:
context: .
dockerfile: rust/Dockerfile
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *ubuntu-volumes
r:
# Usage:
# docker-compose build cpp
# docker-compose build r
# docker-compose run r
image: arrow:r
build:
context: .
dockerfile: r/Dockerfile
volumes: *ubuntu-volumes
r-sanitizer:
# Usage:
# docker-compose build r-sanitizer
# docker-compose run r-sanitizer
image: arrow:r-sanitizer
cap_add:
# LeakSanitizer and gdb requires ptrace(2)
- SYS_PTRACE
build:
context: .
dockerfile: r/Dockerfile.sanitizer
volumes: *ubuntu-volumes
r-conda:
# Usage:
# export R_VERSION=3.5.1
# docker-compose build cpp
# docker-compose build r-conda
# docker-compose run r-conda
image: arrow:r-conda-${R_VERSION:-3.5.1}
shm_size: 2G
build:
context: .
dockerfile: r/Dockerfile.conda
args:
R_VERSION: ${R_VERSION:-3.5.1}
volumes: *ubuntu-volumes
######################### Tools and Linters #################################
# TODO(kszucs): site
# TODO(kszucs): {cpp,java,glib,js}-apidoc
lint:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build lint
# docker-compose run lint
image: arrow:lint
build:
context: .
dockerfile: dev/lint/Dockerfile
command: arrow/dev/lint/run_linters.sh
volumes: *ubuntu-volumes
fuzzit:
# Usage:
# docker-compose build cpp
# docker-compose build fuzzit
# docker-compose run fuzzit
image: arrow:fuzzit
build:
context: .
dockerfile: dev/fuzzit/Dockerfile
environment:
CI_ARROW_SHA: ${CI_ARROW_SHA}
CI_ARROW_BRANCH: ${CI_ARROW_BRANCH}
volumes: *ubuntu-volumes
iwyu:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build lint
# docker-compose run iwyu
image: arrow:lint
command: arrow/dev/lint/run_iwyu.sh
volumes: *ubuntu-volumes
clang-format:
# Usage:
# docker-compose build cpp
# docker-compose build python
# docker-compose build lint
# docker-compose run clang-format
image: arrow:lint
command: arrow/dev/lint/run_clang_format.sh
volumes: *ubuntu-volumes
clang-tidy:
# Usage:
# docker-compose build cpp
# docker-compose build python
# docker-compose build lint
# docker-compose run clang-tidy
image: arrow:lint
command: arrow/dev/lint/run_clang_tidy.sh
volumes: *ubuntu-volumes
docs:
# Usage:
# docker-compose build cpp
# docker-compose build python
# docker-compose build docs
# docker-compose run docs
image: arrow:docs
build:
context: .
dockerfile: docs/Dockerfile
volumes: *ubuntu-volumes
######################### Package Builder ###################################
python-manylinux1:
# Usage:
# either build:
# $ docker-compose build python-manylinux1
# or pull:
# $ docker-compose pull python-manylinux1
# an then run:
# $ docker-compose run -e PYTHON_VERSION=3.7 python-manylinux1
image: ursalab/arrow_manylinux1_x86_64_base:0.14.1-static-zlib
build:
context: python/manylinux1
dockerfile: Dockerfile-x86_64_base
shm_size: 2G
environment:
PYARROW_PARALLEL: 3
PYTHON_VERSION: ${PYTHON_VERSION:-3.6}
UNICODE_WIDTH: ${UNICODE_WIDTH:-16}
volumes:
- .:/arrow:delegated
- ./python/manylinux1:/io:delegated
command: /io/build_arrow.sh
python-manylinux2010:
# Usage:
# either build:
# $ docker-compose build python-manylinux2010
# or pull:
# $ docker-compose pull python-manylinux2010
# an then run:
# $ docker-compose run -e PYTHON_VERSION=3.7 python-manylinux2010
image: ursalab/arrow_manylinux2010_x86_64_base:0.14.1-static-zlib
build:
context: python/manylinux2010
dockerfile: Dockerfile-x86_64_base
shm_size: 2G
environment:
PYARROW_PARALLEL: 3
PYTHON_VERSION: ${PYTHON_VERSION:-3.6}
UNICODE_WIDTH: ${UNICODE_WIDTH:-16}
volumes:
- .:/arrow:delegated
- ./python/manylinux2010:/io:delegated
command: /io/build_arrow.sh
######################### Integration Tests #################################
# impala:
# image: cpcloud86/impala:java8-1
# ports:
# - "21050"
# hostname: impala
pandas-master:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build --no-cache pandas-master
# docker-compose run pandas-master
image: arrow:pandas-master
build:
context: .
dockerfile: integration/pandas/Dockerfile
shm_size: 2G
volumes: *ubuntu-volumes
hdfs-namenode:
image: gelog/hadoop
shm_size: 2G
ports:
- "9000:9000"
- "50070:50070"
command: hdfs namenode
hostname: hdfs-namenode
hdfs-datanode-1:
image: gelog/hadoop
command: hdfs datanode
ports:
# The host port is randomly assigned by Docker, to allow scaling
# to multiple DataNodes on the same host
- "50075"
links:
- hdfs-namenode:hdfs-namenode
hdfs-datanode-2:
image: gelog/hadoop
command: hdfs datanode
ports:
# The host port is randomly assigned by Docker, to allow scaling
# to multiple DataNodes on the same host
- "50075"
links:
- hdfs-namenode:hdfs-namenode
hdfs-integration:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build hdfs-integration
# docker-compose run hdfs-integration
image: arrow:hdfs-${HDFS_VERSION:-2.9.2}
links:
- hdfs-namenode:hdfs-namenode
- hdfs-datanode-1:hdfs-datanode-1
- hdfs-datanode-2:hdfs-datanode-2
environment:
- ARROW_HDFS_TEST_HOST=hdfs-namenode
- ARROW_HDFS_TEST_PORT=9000
- ARROW_HDFS_TEST_USER=root
build:
context: .
dockerfile: integration/hdfs/Dockerfile
args:
HDFS_VERSION: ${HDFS_VERSION:-2.9.2}
volumes: *ubuntu-volumes
# TODO(kszucs): pass dask version explicitly as a build argument
dask-integration:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build dask-integration
# docker-compose run dask-integration
image: arrow:dask-integration
build:
context: .
dockerfile: integration/dask/Dockerfile
volumes: *ubuntu-volumes
turbodbc-integration:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build turbodbc-integration
# docker-compose run turbodbc-integration
image: arrow:turbodbc-integration
build:
context: .
dockerfile: integration/turbodbc/Dockerfile
volumes: *ubuntu-volumes
spark-integration:
# Usage:
# export PYTHON_VERSION=3.6
# docker-compose build cpp
# docker-compose build python
# docker-compose build spark-integration
# docker-compose run spark-integration
image: arrow:spark-${SPARK_VERSION:-master}
environment:
- SPARK_VERSION=${SPARK_VERSION:-master}
build:
context: .
dockerfile: integration/spark/Dockerfile
volumes:
- .:/arrow:ro # ensures that docker won't contaminate the host directory
- ubuntu-cache:/build:delegated
- maven-cache:/root/.m2:delegated
- spark-cache:/spark:delegated
# TODO(kszucs): hive-integration
################################# Release ###################################
release-source:
image: arrow:release-source
build:
context: .
dockerfile: dev/release/source/Dockerfile
volumes:
- .:/arrow:delegated
######################## Verification Containers ############################
debian-stretch:
image: debian:stretch
volumes:
- .:/arrow:delegated
debian-buster:
image: debian:buster
volumes:
- .:/arrow:delegated
ubuntu-trusty:
image: ubuntu:trusty
volumes:
- .:/arrow:delegated
ubuntu-xenial:
image: ubuntu:xenial
volumes:
- .:/arrow:delegated
ubuntu-bionic:
image: ubuntu:bionic
volumes:
- .:/arrow:delegated
ubuntu-disco:
image: ubuntu:disco
volumes:
- .:/arrow:delegated
centos-6:
image: centos:6
volumes:
- .:/arrow:delegated
centos-7:
image: centos:7
volumes:
- .:/arrow:delegated