forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
186 lines (162 loc) · 4.43 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
# 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'
x-volumes:
&volumes
- .:/arrow:delegated
- ${ARROW_DOCKER_CACHE_DIR:-./docker_cache}:/build:delegated
services:
######################### Language Containers ###############################
#TODO(kszucs): R
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: *volumes
cpp:
# Usage:
# docker-compose build cpp
# docker-compose run cpp
image: arrow:cpp
shm_size: 2G
build:
context: .
dockerfile: cpp/Dockerfile
environment:
PARQUET_TEST_DATA: /arrow/cpp/submodules/parquet-testing/data
volumes: *volumes
go:
# Usage:
# docker-compose build go
# docker-compose run go
image: arrow:go
build:
context: .
dockerfile: go/Dockerfile
volumes: *volumes
java:
image: arrow:java
build:
context: .
dockerfile: java/Dockerfile
js:
image: arrow:js
build:
context: .
dockerfile: js/Dockerfile
python:
# Usage:
# export PYTHON_VERSION=3.6
# 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: *volumes
rust:
# Usage:
# docker-compose build rust
# docker-compose run rust
image: arrow:rust
build:
context: .
dockerfile: rust/Dockerfile
volumes: *volumes
######################### Tools and Linters #################################
# TODO(kszucs): site
# TODO(kszucs): apidoc
lint:
# Usage:
# 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: *volumes
iwyu:
# Usage:
# docker-compose build lint
# docker-compose run iwyu
image: arrow:lint
environment:
CC: clang
CXX: clang++
command: arrow/dev/lint/run_iwyu.sh
volumes: *volumes
clang-format:
# Usage:
# docker-compose build lint
# docker-compose run clang-format
image: arrow:lint
command: arrow/dev/lint/run_clang_format.sh
volumes: *volumes
######################### Integration Tests #################################
# impala:
# image: cpcloud86/impala:java8-1
# ports:
# - "21050"
# hostname: impala
hdfs-namenode:
image: gelog/hadoop
shm_size: 2G
ports:
- "9000:9000"
- "50070:50070"
command: hdfs namenode
hostname: hdfs-namenode
hdfs-datanode:
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
links:
- hdfs-namenode:hdfs-namenode
- hdfs-datanode:hdfs-datanode
environment:
- ARROW_HDFS_TEST_HOST=hdfs-namenode
- ARROW_HDFS_TEST_PORT=9000
- ARROW_HDFS_TEST_USER=root
build:
context: .
dockerfile: integration/hdfs/Dockerfile
# TODO(kszucs): dask-integration
# TODO(kszucs): hive-integration
# TODO(kszucs): spark-integration