forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.py
268 lines (250 loc) · 8.94 KB
/
dashboard.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
256
257
258
259
260
261
262
263
264
265
266
267
268
import argparse
import logging
import logging.handlers
import platform
import traceback
import signal
import os
import sys
import ray._private.ray_constants as ray_constants
import ray._private.services
import ray._private.utils
import ray.dashboard.consts as dashboard_consts
import ray.dashboard.head as dashboard_head
import ray.dashboard.utils as dashboard_utils
from ray._private.ray_logging import setup_component_logger
from typing import Optional, Set
# Logger for this module. It should be configured at the entry point
# into the program using Ray. Ray provides a default configuration at
# entry/init points.
logger = logging.getLogger(__name__)
class Dashboard:
"""A dashboard process for monitoring Ray nodes.
This dashboard is made up of a REST API which collates data published by
Reporter processes on nodes into a json structure, and a webserver
which polls said API for display purposes.
Args:
host: Host address of dashboard aiohttp server.
port: Port number of dashboard aiohttp server.
port_retries: The retry times to select a valid port.
gcs_address: GCS address of the cluster
grpc_port: Port used to listen for gRPC on.
node_ip_address: The IP address of the dashboard.
serve_frontend: If configured, frontend HTML
is not served from the dashboard.
log_dir: Log directory of dashboard.
"""
def __init__(
self,
host: str,
port: int,
port_retries: int,
gcs_address: str,
grpc_port: int,
node_ip_address: str,
log_dir: str = None,
temp_dir: str = None,
session_dir: str = None,
minimal: bool = False,
serve_frontend: bool = True,
modules_to_load: Optional[Set[str]] = None,
):
self.dashboard_head = dashboard_head.DashboardHead(
http_host=host,
http_port=port,
http_port_retries=port_retries,
gcs_address=gcs_address,
node_ip_address=node_ip_address,
grpc_port=grpc_port,
log_dir=log_dir,
temp_dir=temp_dir,
session_dir=session_dir,
minimal=minimal,
serve_frontend=serve_frontend,
modules_to_load=modules_to_load,
)
async def run(self):
await self.dashboard_head.run()
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Ray dashboard.")
parser.add_argument(
"--host", required=True, type=str, help="The host to use for the HTTP server."
)
parser.add_argument(
"--port", required=True, type=int, help="The port to use for the HTTP server."
)
parser.add_argument(
"--port-retries",
required=False,
type=int,
default=0,
help="The retry times to select a valid port.",
)
parser.add_argument(
"--gcs-address", required=True, type=str, help="The address (ip:port) of GCS."
)
parser.add_argument(
"--grpc-port",
required=False,
type=int,
default=dashboard_consts.DASHBOARD_RPC_PORT,
help="The port for the dashboard to listen for gRPC on.",
)
parser.add_argument(
"--node-ip-address",
required=True,
type=str,
help="The IP address of the node where this is running.",
)
parser.add_argument(
"--logging-level",
required=False,
type=lambda s: logging.getLevelName(s.upper()),
default=ray_constants.LOGGER_LEVEL,
choices=ray_constants.LOGGER_LEVEL_CHOICES,
help=ray_constants.LOGGER_LEVEL_HELP,
)
parser.add_argument(
"--logging-format",
required=False,
type=str,
default=ray_constants.LOGGER_FORMAT,
help=ray_constants.LOGGER_FORMAT_HELP,
)
parser.add_argument(
"--logging-filename",
required=False,
type=str,
default=dashboard_consts.DASHBOARD_LOG_FILENAME,
help="Specify the name of log file, "
'log to stdout if set empty, default is "{}"'.format(
dashboard_consts.DASHBOARD_LOG_FILENAME
),
)
parser.add_argument(
"--logging-rotate-bytes",
required=False,
type=int,
default=ray_constants.LOGGING_ROTATE_BYTES,
help="Specify the max bytes for rotating "
"log file, default is {} bytes.".format(ray_constants.LOGGING_ROTATE_BYTES),
)
parser.add_argument(
"--logging-rotate-backup-count",
required=False,
type=int,
default=ray_constants.LOGGING_ROTATE_BACKUP_COUNT,
help="Specify the backup count of rotated log file, default is {}.".format(
ray_constants.LOGGING_ROTATE_BACKUP_COUNT
),
)
parser.add_argument(
"--log-dir",
required=True,
type=str,
default=None,
help="Specify the path of log directory.",
)
parser.add_argument(
"--temp-dir",
required=True,
type=str,
default=None,
help="Specify the path of the temporary directory use by Ray process.",
)
parser.add_argument(
"--session-dir",
required=True,
type=str,
default=None,
help="Specify the path of the session directory of the cluster.",
)
parser.add_argument(
"--minimal",
action="store_true",
help=(
"Minimal dashboard only contains a subset of features that don't "
"require additional dependencies installed when ray is installed "
"by `pip install ray[default]`."
),
)
parser.add_argument(
"--modules-to-load",
required=False,
default=None,
help=(
"Specify the list of module names in [module_1],[module_2] format."
"E.g., JobHead,StateHead... "
"If nothing is specified, all modules are loaded."
),
)
parser.add_argument(
"--disable-frontend",
action="store_true",
help=("If configured, frontend html is not served from the server."),
)
args = parser.parse_args()
try:
setup_component_logger(
logging_level=args.logging_level,
logging_format=args.logging_format,
log_dir=args.log_dir,
filename=args.logging_filename,
max_bytes=args.logging_rotate_bytes,
backup_count=args.logging_rotate_backup_count,
)
if args.modules_to_load:
modules_to_load = set(args.modules_to_load.strip(" ,").split(","))
else:
# None == default.
modules_to_load = None
# NOTE: Creating and attaching the event loop to the main OS thread be called
# before initializing Dashboard, which will initialize the grpc aio server,
# which assumes a working event loop. Ref:
# https://github.com/grpc/grpc/blob/master/src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi#L174-L188
loop = ray._private.utils.get_or_create_event_loop()
dashboard = Dashboard(
host=args.host,
port=args.port,
port_retries=args.port_retries,
gcs_address=args.gcs_address,
grpc_port=args.grpc_port,
node_ip_address=args.node_ip_address,
log_dir=args.log_dir,
temp_dir=args.temp_dir,
session_dir=args.session_dir,
minimal=args.minimal,
serve_frontend=(not args.disable_frontend),
modules_to_load=modules_to_load,
)
def sigterm_handler():
logger.warn("Exiting with SIGTERM immediately...")
os._exit(signal.SIGTERM)
if sys.platform != "win32":
# TODO(rickyyx): we currently do not have any logic for actual
# graceful termination in the dashboard. Most of the underlying
# async tasks run by the dashboard head doesn't handle CancelledError.
# So a truly graceful shutdown is not trivial w/o much refactoring.
# Re-open the issue: https://github.com/ray-project/ray/issues/25518
# if a truly graceful shutdown is required.
loop.add_signal_handler(signal.SIGTERM, sigterm_handler)
loop.run_until_complete(dashboard.run())
except Exception as e:
traceback_str = ray._private.utils.format_error_message(traceback.format_exc())
message = (
f"The dashboard on node {platform.uname()[1]} "
f"failed with the following "
f"error:\n{traceback_str}"
)
if isinstance(e, dashboard_utils.FrontendNotFoundError):
logger.warning(message)
else:
logger.error(message)
raise e
# Something went wrong, so push an error to all drivers.
gcs_publisher = ray._raylet.GcsPublisher(address=args.gcs_address)
ray._private.utils.publish_error_to_driver(
ray_constants.DASHBOARD_DIED_ERROR,
message,
gcs_publisher=gcs_publisher,
)