worker.py 13 KB
Newer Older
1
2
3
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

4
import asyncio
5
import logging
6
import random
7
import signal
8
import socket
9
10
import sys
from typing import Any, Dict, Optional, Union
11
12

import sglang as sgl
13
import uvloop
14
import zmq
15
from sglang.srt.server_args import ServerArgs
16
from sglang.srt.utils import get_ip, get_zmq_socket
17
18
from utils.protocol import DisaggPreprocessedRequest
from utils.sgl_utils import parse_sglang_args_inc
19

20
from dynamo.llm import (
21
22
    ForwardPassMetrics,
    KvStats,
23
24
    ModelType,
    WorkerMetricsPublisher,
25
    WorkerStats,
26
27
28
29
    ZmqKvEventPublisher,
    ZmqKvEventPublisherConfig,
    register_llm,
)
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from dynamo.runtime import DistributedRuntime, dynamo_worker
from dynamo.runtime.logging import configure_dynamo_logging

configure_dynamo_logging()


class RequestHandler:
    def __init__(
        self,
        engine: sgl.Engine,
        server_args: ServerArgs,
        component,
        decode_client: Optional[Any] = None,
    ):
        self.engine = engine
        self.server_args = server_args
        self.component = component
        self.metrics_publisher = WorkerMetricsPublisher()
48

49
50
51
        self.zmq_context = zmq.asyncio.Context()  # type: ignore
        self.receive_metrics_from_scheduler = None

52
53
54
55
56
57
58
59
60
61
        if server_args.disaggregation_mode != "null":
            self.bootstrap_host, self.bootstrap_port = self._get_bootstrap_info()
            if decode_client is None:
                raise ValueError(
                    "decode_client must be provided when disaggregation_mode is not 'null'"
                )
            self.decode_client = decode_client
            logging.info(
                f"Disaggregation enabled - bootstrap host: {self.bootstrap_host}, bootstrap port: {self.bootstrap_port}"
            )
62

63
        logging.info("Request handler initialized")
64

65
    def setup_metrics(self):
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
        """Set up metrics publisher"""
        self.receive_metrics_from_scheduler = get_zmq_socket(
            self.zmq_context, zmq.PULL, self.engine.port_args.metrics_ipc_name, True
        )

        self.init_publish()
        asyncio.create_task(self._receive_and_publish_metrics_loop())

        task = asyncio.create_task(self.create_metrics_publisher_endpoint())
        task.add_done_callback(
            lambda _: logging.debug("metrics publisher endpoint created")
        )

    def init_publish(self):
        """Publish initial set of warmup metrics"""
81
        worker_stats = WorkerStats(
82
83
            request_active_slots=0,
            request_total_slots=1024,
84
            num_requests_waiting=0,
85
            data_parallel_rank=0,
86
87
88
        )

        kv_stats = KvStats(
89
90
            kv_active_blocks=0,
            kv_total_blocks=1024,
91
92
            gpu_cache_usage_perc=0,
            gpu_prefix_cache_hit_rate=0,
93
        )
94
95
96
97
98
99

        metrics = ForwardPassMetrics(
            worker_stats=worker_stats,
            kv_stats=kv_stats,
            spec_decode_stats=None,
        )
100

101
        self.metrics_publisher.publish(metrics)
102

103
104
105
    async def create_metrics_publisher_endpoint(self):
        logging.debug("Creating metrics publisher endpoint")
        await self.metrics_publisher.create_endpoint(self.component)
106

107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
    async def _receive_and_publish_metrics_loop(self):
        """Receive metrics from SGL scheduler and publish them"""
        while True:
            try:
                kv_metrics = await self.receive_metrics_from_scheduler.recv_pyobj()  # type: ignore
                worker_stats = WorkerStats(
                    request_active_slots=kv_metrics.request_active_slots,
                    request_total_slots=kv_metrics.request_total_slots,
                    num_requests_waiting=kv_metrics.num_requests_waiting,
                    data_parallel_rank=kv_metrics.data_parallel_rank,  # Note: 0 means it's either 0 or None from sglang
                )
                kv_stats = KvStats(
                    kv_active_blocks=kv_metrics.kv_active_blocks,
                    kv_total_blocks=kv_metrics.kv_total_blocks,
                    gpu_cache_usage_perc=kv_metrics.gpu_cache_usage_perc,
                    gpu_prefix_cache_hit_rate=kv_metrics.gpu_prefix_cache_hit_rate,
                )
                spec_dec_stats = None
                metrics = ForwardPassMetrics(
                    worker_stats=worker_stats,
                    kv_stats=kv_stats,
                    spec_decode_stats=spec_dec_stats,
                )
130

131
132
133
                self.metrics_publisher.publish(metrics)
            except Exception:
                logging.exception("Failed to recieve or publish metrics")
134

135
    def _get_bootstrap_info(self):
136
        """Bootstrap info from tokenizer manager"""
137
138
139
140
141
142
143
144
145
146
147
        inner_tm = self.engine.tokenizer_manager
        bootstrap_port = inner_tm.server_args.disaggregation_bootstrap_port

        if inner_tm.server_args.dist_init_addr:
            bootstrap_host = socket.gethostbyname(
                inner_tm.server_args.dist_init_addr.split(":")[0]
            )
        else:
            bootstrap_host = get_ip()

        return bootstrap_host, bootstrap_port
148

149
    def _build_sampling_params(self, request: dict) -> dict:
150
        sampling_params = {}
151
152
153
154
155
156
157
158
159
        if request["sampling_options"]["temperature"]:
            sampling_params["temperature"] = request["sampling_options"]["temperature"]
        if request["sampling_options"]["top_p"]:
            sampling_params["top_p"] = request["sampling_options"]["top_p"]
        if request["sampling_options"]["top_k"]:
            sampling_params["top_k"] = request["sampling_options"]["top_k"]
        sampling_params["max_new_tokens"] = request["stop_conditions"]["max_tokens"]
        if request["stop_conditions"]["ignore_eos"]:
            sampling_params["ignore_eos"] = request["stop_conditions"]["ignore_eos"]
160
161
        return sampling_params

162
    def _get_request_batch_size(self, request: dict):
163
        """Get batch size from request, returns None for single requests"""
164
165
        if request["batch_token_ids"] is not None:
            return len(request["batch_token_ids"])
166
167
        return None

168
    def _is_batch_request(self, request: dict):
169
        """Check if request is in batch mode"""
170
171
172
173
        return request["batch_token_ids"] is not None

    def _generate_bootstrap_room(self):
        return random.randint(0, 2**63 - 1)
174

175
    async def generate(self, request: dict):
176
177
178
        is_batch = self._is_batch_request(request)
        batch_size = self._get_request_batch_size(request)

179
180
        # TODO: maintain a mapping from SGLang's Ouput struct to LLMEngineOuput
        sampling_params = self._build_sampling_params(request)
181

182
        if self.server_args.disaggregation_mode != "null":
183
184
185
186
187
188
189
190
191
192
            if is_batch:
                bootstrap_room = [
                    self._generate_bootstrap_room() for _ in range(batch_size)
                ]
                bootstrap_host = [self.bootstrap_host] * batch_size
                bootstrap_port = [self.bootstrap_port] * batch_size
            else:
                bootstrap_host = self.bootstrap_host
                bootstrap_port = self.bootstrap_port
                bootstrap_room = self._generate_bootstrap_room()
193
194
195
196
197

            # decode worker request
            disagg_request = DisaggPreprocessedRequest(
                request=request,
                sampling_params=sampling_params,
198
199
                bootstrap_host=bootstrap_host,
                bootstrap_port=bootstrap_port,
200
201
202
203
204
                bootstrap_room=bootstrap_room,
            )

            # prefill response is not used
            prefill = await self.engine.async_generate(
205
                input_ids=request["token_ids"]
206
                if not is_batch
207
                else request["batch_token_ids"],
208
209
                sampling_params=sampling_params,
                stream=True,
210
211
                bootstrap_host=bootstrap_host,
                bootstrap_port=bootstrap_port,
212
213
214
215
216
217
                bootstrap_room=bootstrap_room,
            )
            prefill_task = asyncio.create_task(self._prefill_generator(prefill))

            decode = await self.decode_client.generate(disagg_request.model_dump_json())

218
219
220
            async for out in self._process_stream(
                decode, unpack=True, is_batch=is_batch
            ):
221
222
223
224
225
                yield out

            await prefill_task
        else:
            g = await self.engine.async_generate(
226
                input_ids=request["token_ids"]
227
                if not is_batch
228
                else request["batch_token_ids"],
229
230
231
232
                sampling_params=sampling_params,
                stream=True,
            )

233
            async for out in self._process_stream(g, unpack=False, is_batch=is_batch):
234
235
                yield out

236
237
238
239
240
241
242
243
    async def _process_stream(self, stream_source, unpack: bool, is_batch: bool):
        # Initialize based on batch mode
        num_output_tokens_so_far: Union[Dict[int, int], int]
        if is_batch:
            num_output_tokens_so_far = {}
        else:
            num_output_tokens_so_far = 0

244
245
246
        async for res in stream_source:
            data = res.data() if unpack else res
            finish_reason = data["meta_info"]["finish_reason"]
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268

            if is_batch:
                # Handle batch response
                assert isinstance(num_output_tokens_so_far, dict)
                index = data.get("index", 0)
                if index not in num_output_tokens_so_far:
                    num_output_tokens_so_far[index] = 0

                if finish_reason:
                    out = {
                        "token_ids": [],
                        "finish_reason": finish_reason["type"],
                        "index": index,
                    }
                else:
                    next_total_toks = len(data["output_ids"])
                    new_tokens = data["output_ids"][num_output_tokens_so_far[index] :]
                    out = {
                        "token_ids": new_tokens,
                        "index": index,
                    }
                    num_output_tokens_so_far[index] = next_total_toks
269
            else:
270
271
272
273
274
275
276
277
278
                # Handle single response
                assert isinstance(num_output_tokens_so_far, int)
                if finish_reason:
                    out = {"token_ids": [], "finish_reason": finish_reason["type"]}
                else:
                    next_total_toks = len(data["output_ids"])
                    out = {"token_ids": data["output_ids"][num_output_tokens_so_far:]}
                    num_output_tokens_so_far = next_total_toks

279
            yield out
280
281
282
283

    async def _prefill_generator(self, prefill):
        async for _ in prefill:
            pass
284

285
286
287
288
289
290
291
292
    async def flush_cache(self, request: dict):
        _ = request
        asyncio.create_task(self.engine.tokenizer_manager.flush_cache())
        yield {
            "status": "success",
            "message": "Cache flush initiated. Check backend logs for status",
        }

293

294
295
296
297
298
299
async def graceful_shutdown(runtime):
    logging.info("Received shutdown signal, shutting down DistributedRuntime")
    runtime.shutdown()
    logging.info("DistributedRuntime shutdown complete")


300
301
@dynamo_worker(static=False)
async def worker(runtime: DistributedRuntime):
302
303
304
305
306
307
308
309
310
311
312
313
    # Set up signal handler for graceful shutdown
    loop = asyncio.get_running_loop()

    def signal_handler():
        # Schedule the shutdown coroutine instead of calling it directly
        asyncio.create_task(graceful_shutdown(runtime))

    for sig in (signal.SIGTERM, signal.SIGINT):
        loop.add_signal_handler(sig, signal_handler)

    logging.info("Signal handlers set up for graceful shutdown")

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
    server_args = parse_sglang_args_inc(sys.argv[1:])
    await init(runtime, server_args)


async def init(runtime: DistributedRuntime, server_args: ServerArgs):
    """Initialize worker (either prefill or aggregated)"""

    engine = sgl.Engine(server_args=server_args)

    component = runtime.namespace("dynamo").component("worker")
    await component.create_service()

    endpoint = component.endpoint("generate")
    await register_llm(
        ModelType.Backend,
        endpoint,
        server_args.model_path,
        server_args.served_model_name,
        kv_cache_block_size=server_args.page_size,
    )

    if server_args.disaggregation_mode != "null":
        decode_client = (
            await runtime.namespace("dynamo")
            .component("decode")
            .endpoint("generate")
            .client()
        )
        handler = RequestHandler(engine, server_args, component, decode_client)
    else:
        handler = RequestHandler(engine, server_args, component)

346
    # Set up the engine metrics reciever
347
348
349
350
351
352
353
354
355
    handler.setup_metrics()

    # Set up ZMQ kv event publisher
    zmq_config = ZmqKvEventPublisherConfig(
        worker_id=endpoint.lease_id(),
        kv_block_size=server_args.page_size,
    )
    _ = ZmqKvEventPublisher(component=component, config=zmq_config)

356
357
358
359
360
361
    tasks = [endpoint.serve_endpoint(handler.generate)]

    flush_endpoint = component.endpoint("flush_cache")
    tasks.append(flush_endpoint.serve_endpoint(handler.flush_cache))

    await asyncio.gather(*tasks)
362
363
364
365
366


if __name__ == "__main__":
    uvloop.install()
    asyncio.run(worker())