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

4
5
6
7
8
9
10
11
12
"""
Test Execution Times (Last Run: 2025-12-09):
- test_request_migration_trtllm_worker_failure: ~95s (gpu_1)
- test_request_migration_trtllm_graceful_shutdown: ~95s (gpu_1, skipped)
- test_no_request_migration_trtllm_worker_failure: ~60s (gpu_1)
- test_no_request_migration_trtllm_graceful_shutdown: ~60s (gpu_1, skipped)
- Total: ~155s (0:02:35) for enabled tests
"""

13
14
15
16
17
18
19
20
21
import logging
import os
import shutil

import pytest

from tests.utils.constants import FAULT_TOLERANCE_MODEL_NAME
from tests.utils.managed_process import ManagedProcess, terminate_process_tree
from tests.utils.payloads import check_models_api
22
from tests.utils.port_utils import allocate_port, deallocate_port
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

# Import utilities from the refactored utils module
from .utils import (
    DynamoFrontendProcess,
    determine_request_receiving_worker,
    start_completion_request,
    validate_completion_response,
    verify_migration_occurred,
)

logger = logging.getLogger(__name__)

pytestmark = [
    pytest.mark.trtllm,
    pytest.mark.gpu_1,
    pytest.mark.e2e,
    pytest.mark.model(FAULT_TOLERANCE_MODEL_NAME),
40
    pytest.mark.post_merge,  # post_merge to pinpoint failure commit
41
42
43
44
45
46
]


class DynamoWorkerProcess(ManagedProcess):
    """Process manager for Dynamo worker with TRT-LLM backend"""

47
48
49
50
51
52
53
    def __init__(
        self,
        request,
        worker_id: str,
        frontend_port: int,
        migration_limit: int = 3,
    ):
54
        self.worker_id = worker_id
55
56
57
58
59
        self.frontend_port = frontend_port

        # Allocate system port for this worker
        system_port = allocate_port(9100)
        self.system_port = system_port
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76

        command = [
            "python3",
            "-m",
            "dynamo.trtllm",
            "--model",
            FAULT_TOLERANCE_MODEL_NAME,
            "--disaggregation-mode",
            "prefill_and_decode",
            "--free-gpu-memory-fraction",
            "0.45",
            "--max-seq-len",
            "8192",
            "--migration-limit",
            str(migration_limit),
        ]

77
        # Set environment variables
78
        env = os.environ.copy()
79
        env["DYN_REQUEST_PLANE"] = request.getfixturevalue("request_plane")
80
        env["DYN_LOG"] = "debug"
81
82
83
84
85
        # Disable canary health check - these tests expect full control over requests
        # sent to the workers where canary health check intermittently sends dummy
        # requests to workers interfering with the test process which may cause
        # intermittent failures
        env["DYN_HEALTH_CHECK_ENABLED"] = "false"
86
        env["DYN_SYSTEM_USE_ENDPOINT_HEALTH_STATUS"] = '["generate"]'
87
        env["DYN_SYSTEM_PORT"] = str(system_port)
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104

        # TODO: Have the managed process take a command name explicitly to distinguish
        #       between processes started with the same command.
        log_dir = f"{request.node.name}_{worker_id}"

        # Clean up any existing log directory from previous runs
        try:
            shutil.rmtree(log_dir)
            logger.info(f"Cleaned up existing log directory: {log_dir}")
        except FileNotFoundError:
            # Directory doesn't exist, which is fine
            pass

        super().__init__(
            command=command,
            env=env,
            health_check_urls=[
105
106
                (f"http://localhost:{frontend_port}/v1/models", check_models_api),
                (f"http://localhost:{system_port}/health", self.is_ready),
107
108
109
110
111
112
113
            ],
            timeout=300,
            display_output=True,
            terminate_existing=False,
            log_dir=log_dir,
        )

114
115
116
117
118
119
120
121
122
    def __exit__(self, exc_type, exc_val, exc_tb):
        """Release allocated port when worker exits."""
        try:
            # system_port is always allocated in __init__
            deallocate_port(self.system_port)
        except Exception as e:
            logging.warning(f"Failed to release TRT-LLM worker port: {e}")

        return super().__exit__(exc_type, exc_val, exc_tb)
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138

    def is_ready(self, response) -> bool:
        """Check the health of the worker process"""
        try:
            data = response.json()
            if data.get("status") == "ready":
                logger.info(f"{self.worker_id} status is ready")
                return True
            logger.warning(
                f"{self.worker_id} status is not ready: {data.get('status')}"
            )
        except ValueError:
            logger.warning(f"{self.worker_id} health response is not valid JSON")
        return False


139
@pytest.mark.timeout(290)  # 3x average
140
141
142
143
144
145
146
147
148
149
150
@pytest.mark.parametrize(
    "request_plane",
    [
        "nats",
        pytest.param(
            "tcp",
            marks=pytest.mark.xfail(reason="Multi-worker TCP unstable", strict=False),
        ),
    ],
    indirect=True,
)
151
def test_request_migration_trtllm_worker_failure(
152
    request, runtime_services_dynamic_ports, set_ucx_tls_no_mm, predownload_models
153
154
155
156
157
158
159
):
    """
    End-to-end test for worker fault tolerance with migration support using TRT-LLM.

    This test verifies that when a worker is killed during request processing,
    the system can handle the failure gracefully and migrate the request to
    another worker.
160
161
162
163
164

    Timing (Last Run: 2025-12-09): ~95s total (2 workers at 45% GPU each)
    - Engine initialization: ~52s (frontend: 2s, worker1: 25s, worker2: 25s sequential)
    - Test execution (request + migration): ~40s
    - Teardown: ~3s
165
166
    """

167
    # Step 1: Start the frontend (allocates its own frontend_port)
168
169
170
171
    with DynamoFrontendProcess(request) as frontend:
        logger.info("Frontend started successfully")

        # Step 2: Start 2 workers sequentially
172
        with DynamoWorkerProcess(request, "worker1", frontend.frontend_port) as worker1:
173
174
            logger.info(f"Worker 1 PID: {worker1.get_pid()}")

175
176
177
            with DynamoWorkerProcess(
                request, "worker2", frontend.frontend_port
            ) as worker2:
178
179
180
                logger.info(f"Worker 2 PID: {worker2.get_pid()}")

                # Step 3: Send the request
181
182
183
                request_thread, response_list = start_completion_request(
                    frontend.frontend_port
                )
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203

                # Step 4: Use polling to determine which worker received the request
                worker, worker_name = determine_request_receiving_worker(
                    worker1, worker2, receiving_pattern="New Request ID: "
                )

                # Step 5: Kill the worker that has the request
                logger.info(
                    f"Killing {worker_name} with PID {worker.get_pid()} processing the request"
                )
                terminate_process_tree(worker.get_pid(), immediate_kill=True, timeout=0)

                # Step 6: Validate the completion response
                validate_completion_response(request_thread, response_list)

                # Step 7: Verify migration occurred
                verify_migration_occurred(frontend)


@pytest.mark.skip(reason="TRT-LLM graceful shutdown not yet implemented")
204
205
206
207
208
209
210
211
212
213
214
@pytest.mark.parametrize(
    "request_plane",
    [
        "nats",
        pytest.param(
            "tcp",
            marks=pytest.mark.xfail(reason="Multi-worker TCP unstable", strict=False),
        ),
    ],
    indirect=True,
)
215
def test_request_migration_trtllm_graceful_shutdown(
216
    request, runtime_services_dynamic_ports, set_ucx_tls_no_mm, predownload_models
217
218
219
220
221
222
223
224
225
):
    """
    End-to-end test for worker fault tolerance with graceful shutdown and migration support using TRT-LLM.

    This test verifies that when a worker receives a graceful shutdown signal (SIGTERM)
    during request processing, the system can handle the shutdown gracefully and migrate
    the request to another worker. Unlike the abrupt kill test, this simulates a more
    controlled shutdown scenario where the worker has time to clean up and notify the
    system about its shutdown.
226
227
228
229
230

    Timing (Last Run: 2025-12-09): ~95s total (2 workers at 45% GPU each)
    - Engine initialization: ~52s (frontend: 2s, worker1: 25s, worker2: 25s sequential)
    - Test execution (request + graceful migration): ~40s
    - Teardown: ~3s
231
232
    """

233
    # Step 1: Start the frontend (allocates its own frontend_port)
234
235
236
237
    with DynamoFrontendProcess(request) as frontend:
        logger.info("Frontend started successfully")

        # Step 2: Start 2 workers sequentially
238
        with DynamoWorkerProcess(request, "worker1", frontend.frontend_port) as worker1:
239
240
            logger.info(f"Worker 1 PID: {worker1.get_pid()}")

241
242
243
            with DynamoWorkerProcess(
                request, "worker2", frontend.frontend_port
            ) as worker2:
244
245
246
                logger.info(f"Worker 2 PID: {worker2.get_pid()}")

                # Step 3: Send the request
247
248
249
                request_thread, response_list = start_completion_request(
                    frontend.frontend_port
                )
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270

                # Step 4: Use polling to determine which worker received the request
                worker, worker_name = determine_request_receiving_worker(
                    worker1, worker2, receiving_pattern="New Request ID: "
                )

                # Step 5: Gracefully shutdown the worker that has the request
                logger.info(
                    f"Gracefully shutting down {worker_name} with PID {worker.get_pid()} processing the request"
                )
                terminate_process_tree(
                    worker.get_pid(), immediate_kill=False, timeout=10
                )

                # Step 6: Validate the completion response
                validate_completion_response(request_thread, response_list)

                # Step 7: Verify migration occurred during graceful shutdown
                verify_migration_occurred(frontend)


271
@pytest.mark.timeout(185)  # 3x average
272
273
274
275
276
277
278
279
280
281
282
@pytest.mark.parametrize(
    "request_plane",
    [
        "nats",
        pytest.param(
            "tcp",
            marks=pytest.mark.xfail(reason="Multi-worker TCP unstable", strict=False),
        ),
    ],
    indirect=True,
)
283
def test_no_request_migration_trtllm_worker_failure(
284
    request, runtime_services_dynamic_ports, set_ucx_tls_no_mm, predownload_models
285
286
287
288
289
290
291
):
    """
    End-to-end test for worker fault tolerance with migration disabled using TRT-LLM.

    This test verifies that when migration is disabled (migration_limit=0) and a worker
    is killed during request processing, the request fails as expected without migration.
    This is the opposite behavior of test_request_migration_trtllm_worker_failure.
292
293
294
295
296

    Timing (Last Run: 2025-12-09): ~60s total (2 workers at 45% GPU each)
    - Engine initialization: ~52s (frontend: 2s, worker1: 25s, worker2: 25s sequential)
    - Test execution (request failure): ~6s
    - Teardown: ~2s
297
298
    """

299
    # Step 1: Start the frontend (allocates its own frontend_port)
300
301
302
303
    with DynamoFrontendProcess(request) as frontend:
        logger.info("Frontend started successfully")

        # Step 2: Start 2 workers sequentially with migration disabled
304
305
306
307
308
309
        with DynamoWorkerProcess(
            request,
            "worker1",
            frontend.frontend_port,
            migration_limit=0,
        ) as worker1:
310
311
            logger.info(f"Worker 1 PID: {worker1.get_pid()}")

312
313
314
315
316
317
            with DynamoWorkerProcess(
                request,
                "worker2",
                frontend.frontend_port,
                migration_limit=0,
            ) as worker2:
318
319
320
                logger.info(f"Worker 2 PID: {worker2.get_pid()}")

                # Step 3: Send the request
321
322
323
                request_thread, response_list = start_completion_request(
                    frontend.frontend_port
                )
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

                # Step 4: Use polling to determine which worker received the request
                worker, worker_name = determine_request_receiving_worker(
                    worker1, worker2, receiving_pattern="New Request ID: "
                )

                # Step 5: Kill the worker that has the request
                logger.info(
                    f"Killing {worker_name} with PID {worker.get_pid()} processing the request"
                )
                terminate_process_tree(worker.get_pid(), immediate_kill=True, timeout=0)

                # Step 6: Validate the completion response - should fail without migration
                try:
                    validate_completion_response(request_thread, response_list)
                    pytest.fail(
                        "Request succeeded unexpectedly when migration was disabled"
                    )
                except AssertionError as e:
                    assert "Request failed with status 500: " in str(
                        e
                    ), f"Unexpected request error message: {e}"

                # Step 7: Verify migration did NOT occur - should fail
                try:
                    verify_migration_occurred(frontend)
                    pytest.fail(
                        "Migration verification unexpectedly passed when migration was disabled"
                    )
                except AssertionError as e:
                    assert "'Cannot recreate stream: ...' error found in logs" in str(
                        e
                    ), f"Unexpected migration message: {e}"


@pytest.mark.skip(reason="TRT-LLM graceful shutdown not yet implemented")
360
361
362
363
364
365
366
367
368
369
370
@pytest.mark.parametrize(
    "request_plane",
    [
        "nats",
        pytest.param(
            "tcp",
            marks=pytest.mark.xfail(reason="Multi-worker TCP unstable", strict=False),
        ),
    ],
    indirect=True,
)
371
def test_no_request_migration_trtllm_graceful_shutdown(
372
    request, runtime_services_dynamic_ports, set_ucx_tls_no_mm, predownload_models
373
374
375
376
377
378
379
380
):
    """
    End-to-end test for worker fault tolerance with graceful shutdown and migration disabled using TRT-LLM.

    This test verifies that when migration is disabled (migration_limit=0) and a worker
    receives a graceful shutdown signal (SIGTERM) during request processing, the request
    fails as expected without migration. This is the opposite behavior of
    test_request_migration_trtllm_graceful_shutdown.
381
382
383
384
385

    Timing (Last Run: 2025-12-09): ~60s total (2 workers at 45% GPU each)
    - Engine initialization: ~52s (frontend: 2s, worker1: 25s, worker2: 25s sequential)
    - Test execution (graceful shutdown failure): ~6s
    - Teardown: ~2s
386
387
    """

388
    # Step 1: Start the frontend (allocates its own frontend_port)
389
390
391
392
    with DynamoFrontendProcess(request) as frontend:
        logger.info("Frontend started successfully")

        # Step 2: Start 2 workers sequentially with migration disabled
393
394
395
396
397
398
        with DynamoWorkerProcess(
            request,
            "worker1",
            frontend.frontend_port,
            migration_limit=0,
        ) as worker1:
399
400
            logger.info(f"Worker 1 PID: {worker1.get_pid()}")

401
402
403
404
405
406
            with DynamoWorkerProcess(
                request,
                "worker2",
                frontend.frontend_port,
                migration_limit=0,
            ) as worker2:
407
408
409
                logger.info(f"Worker 2 PID: {worker2.get_pid()}")

                # Step 3: Send the request
410
411
412
                request_thread, response_list = start_completion_request(
                    frontend.frontend_port
                )
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

                # Step 4: Use polling to determine which worker received the request
                worker, worker_name = determine_request_receiving_worker(
                    worker1, worker2, receiving_pattern="New Request ID: "
                )

                # Step 5: Gracefully shutdown the worker that has the request
                logger.info(
                    f"Gracefully shutting down {worker_name} with PID {worker.get_pid()} processing the request"
                )
                terminate_process_tree(
                    worker.get_pid(), immediate_kill=False, timeout=10
                )

                # Step 6: Validate the completion response - should fail without migration
                try:
                    validate_completion_response(request_thread, response_list)
                    pytest.fail(
                        "Request succeeded unexpectedly when migration was disabled"
                    )
                except AssertionError as e:
                    assert "Request failed with status 500: " in str(
                        e
                    ), f"Unexpected request error message: {e}"

                # Step 7: Verify migration did NOT occur - should fail
                try:
                    verify_migration_occurred(frontend)
                    pytest.fail(
                        "Migration verification unexpectedly passed when migration was disabled"
                    )
                except AssertionError as e:
                    assert "'Cannot recreate stream: ...' error found in logs" in str(
                        e
                    ), f"Unexpected migration message: {e}"