forked from jupyter/tmpnb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockworker.py
255 lines (204 loc) · 9.29 KB
/
dockworker.py
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
from concurrent.futures import ThreadPoolExecutor
from collections import namedtuple
import re
import docker
import requests
from docker.utils import create_host_config, kwargs_from_env
from tornado import gen, web
from tornado.log import app_log
ContainerConfig = namedtuple('ContainerConfig', [
'image', 'command', 'mem_limit', 'cpu_quota', 'cpu_shares', 'container_ip',
'container_port', 'container_user', 'host_network', 'host_directories',
'extra_hosts', 'container_network'
])
# Number of times to retry API calls before giving up.
RETRIES = 5
class AsyncDockerClient():
'''Completely ridiculous wrapper for a Docker client that returns futures
on every single docker method called on it, configured with an executor.
If no executor is passed, it defaults ThreadPoolExecutor(max_workers=2).
'''
def __init__(self, docker_client, executor=None):
if executor is None:
executor = ThreadPoolExecutor(max_workers=2)
self._docker_client = docker_client
self.executor = executor
def __getattr__(self, name):
'''Creates a function, based on docker_client.name that returns a
Future. If name is not a callable, returns the attribute directly.
'''
fn = getattr(self._docker_client, name)
# Make sure it really is a function first
if not callable(fn):
return fn
def method(*args, **kwargs):
return self.executor.submit(fn, *args, **kwargs)
return method
class DockerSpawner():
def __init__(self,
docker_host='unix://var/run/docker.sock',
version='auto',
timeout=30,
max_workers=64,
assert_hostname=False):
#kwargs = kwargs_from_env(assert_hostname=False)
kwargs = kwargs_from_env(assert_hostname=assert_hostname)
# environment variable DOCKER_HOST takes precedence
kwargs.setdefault('base_url', docker_host)
blocking_docker_client = docker.Client(version=version,
timeout=timeout,
**kwargs)
executor = ThreadPoolExecutor(max_workers=max_workers)
async_docker_client = AsyncDockerClient(blocking_docker_client,
executor)
self.docker_client = async_docker_client
self.port = 0
@gen.coroutine
def create_notebook_server(self, base_path, container_name, container_config):
'''Creates a notebook_server running off of `base_path`.
Returns the (container_id, ip, port) tuple in a Future.'''
if container_config.host_network:
# Start with specified container port
if self.port == 0:
self.port = int(container_config.container_port)
port = self.port
self.port += 1
# No bindings when using the host network
port_bindings = None
else:
# Bind the specified within-container port to a random port
# on the container-host IP address
port = container_config.container_port
port_bindings = {
container_config.container_port: (container_config.container_ip,)
}
app_log.debug(container_config)
# Assumes that the container_config.command is of a format like:
#
# ipython notebook --no-browser --port {port} --ip=0.0.0.0
# --NotebookApp.base_path=/{base_path}
# --NotebookApp.tornado_settings=\"{ \"template_path\": [ \"/srv/ga\",
# \"/srv/ipython/IPython/html\",
# \"/srv/ipython/IPython/html/templates\" ] }\""
#
# Important piece here is the parametrized base_path to let the
# underlying process know where the proxy is routing it.
rendered_command = container_config.command.format(base_path=base_path, port=port,
ip=container_config.container_ip)
command = [
"/bin/sh",
"-c",
rendered_command
]
volume_bindings = {}
volumes = []
if container_config.host_directories:
directories = container_config.host_directories.split(",")
for index, item in enumerate(directories):
directory = item.split(":")[0]
try:
permissions = item.split(":")[1]
except IndexError:
permissions = 'rw'
volumes.append('/mnt/vol' + str(index))
volume_bindings[directory] = {
'bind': '/mnt/vol' + str(index),
'mode': permissions
}
extra_hosts = dict(map(lambda h: tuple(h.split(':')),
container_config.extra_hosts))
if container_config.host_network:
network_mode='host'
elif container_config.container_network:
network_mode=container_config.container_network
else:
network_mode='bridge'
host_config = dict(
mem_limit=container_config.mem_limit,
network_mode=network_mode,
binds=volume_bindings,
port_bindings=port_bindings,
extra_hosts=extra_hosts,
cpu_quota=container_config.cpu_quota,
)
host_config = create_host_config(**host_config)
cpu_shares = None
if container_config.cpu_shares:
# Some versions of Docker and docker-py won't cast from string to int
cpu_shares = int(container_config.cpu_shares)
resp = yield self._with_retries(self.docker_client.create_container,
image=container_config.image,
user=container_config.container_user,
command=command,
volumes=volumes,
host_config=host_config,
cpu_shares=cpu_shares,
name=container_name)
docker_warnings = resp.get('Warnings')
if docker_warnings is not None:
app_log.warn(docker_warnings)
container_id = resp['Id']
app_log.info("Created container {}".format(container_id))
yield self._with_retries(self.docker_client.start,
container_id)
if container_config.host_network:
host_port = port
host_ip = container_config.container_ip
else:
container_network = yield self._with_retries(self.docker_client.port,
container_id,
container_config.container_port)
host_port = container_network[0]['HostPort']
host_ip = container_network[0]['HostIp']
raise gen.Return((container_id, host_ip, int(host_port)))
@gen.coroutine
def shutdown_notebook_server(self, container_id, alive=True):
'''Gracefully stop a running container.'''
if alive:
yield self._with_retries(self.docker_client.stop, container_id)
yield self._with_retries(self.docker_client.remove_container, container_id)
@gen.coroutine
def list_notebook_servers(self, pool_regex, all=True):
'''List containers that are managed by a specific pool.'''
existing = yield self._with_retries(self.docker_client.containers,
all=all,
trunc=False)
def name_matches(container):
try:
names = container['Names']
if names is None:
app_log.warn("Docker API returned null Names, ignoring")
return False
except Exception:
app_log.warn("Invalid container: %r", container)
return False
for name in names:
if pool_regex.search(name):
return True
return False
matching = [container for container in existing if name_matches(container)]
raise gen.Return(matching)
@gen.coroutine
def _with_retries(self, fn, *args, **kwargs):
'''Attempt a Docker API call.
If an error occurs, retry up to "max_tries" times before letting the exception propagate
up the stack.'''
max_tries = kwargs.get('max_tries', RETRIES)
try:
if 'max_tries' in kwargs:
del kwargs['max_tries']
result = yield fn(*args, **kwargs)
raise gen.Return(result)
except (docker.errors.APIError, requests.exceptions.RequestException) as e:
app_log.error("Encountered a Docker error with {} ({} retries remain): {}".format(fn.__name__, max_tries, e))
if max_tries > 0:
kwargs['max_tries'] = max_tries - 1
result = yield self._with_retries(fn, *args, **kwargs)
raise gen.Return(result)
else:
raise e
@gen.coroutine
def copy_files(self, container_id, path):
'''Returns a tarball of path from container_id'''
tarball = yield self.docker_client.copy(container_id, path)
raise gen.Return(tarball)