parse_results.py 14.5 KB
Newer Older
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed 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.

import argparse
import json
import os
import re
from datetime import datetime
from typing import Any

import pandas as pd
from tabulate import tabulate


def parse_test_log(file_path):
    start_time = None
    ready_time = None
    fault_time = None
    start_cmd = None
    if not os.path.isfile(file_path):
        return None, None, None
    with open(file_path, "r") as f:
        for line in f:
            line = line.strip()
            if "Running command: dynamo serve" in line:
                start_time = datetime.fromisoformat(
                    line.split(" ")[1].replace("T", " ")
                )
                start_cmd = line.split("Running command:")[1]
            elif "Deployment Ready" in line:
                ready_time = datetime.fromisoformat(
                    line.split(" ")[1].replace("T", " ")
                )
            elif "Injecting failure for:" in line:
                fault_time = datetime.fromisoformat(
                    line.split(" ")[1].replace("T", " ")
                )
    startup_time = (
        (ready_time - start_time).total_seconds() if start_time and ready_time else None
    )
    return startup_time, fault_time, start_cmd


def parse_client_logs(test_dir, expected_length=100):
    all_logs = []
    for file in os.listdir(test_dir):
        if file.startswith("client_") and file.endswith(".log.txt"):
            with open(os.path.join(test_dir, file), "r") as f:
                request_number = 0
                for line in f:
                    request_number += 1
                    data = json.loads(line.strip())
                    for result in data["results"]:
                        log_entry = {
                            "time": datetime.fromisoformat(
                                data["time"].replace("T", " ")
                            ),
                            "status": result["status"],
                            "request_elapsed_time": result["request_elapsed_time"],
                            "request_number": request_number - 1,
                            "client": file.split("_")[1].split(".")[0],
                        }
                        if (
                            "result" in result
                            and result["result"]
                            and "choices" in result["result"]
                            and result["result"]["choices"]
                        ):
                            log_entry["success"] = True
                            content = result["result"]["choices"][0]["message"][
                                "content"
                            ]
                            if not content or len(content) < expected_length:
                                log_entry["success"] = False
                        else:
                            log_entry["success"] = False
                        all_logs.append(log_entry)
    if len(all_logs):
        df = pd.DataFrame(all_logs)
        df.sort_values("time", inplace=True)
        return df

    return None


def calculate_metrics(df, fault_time, sla=2.1):
    success = df["success"].sum()
    failure = len(df) - success

    if fault_time:
        before_fault = df[df["time"] <= fault_time]
        after_fault = df[df["time"] > fault_time]
    else:
        before_fault = df
        after_fault = None

    # Existing latency metrics (only successful requests)
    successful_before = before_fault[before_fault["success"]]
    avg_before = successful_before["request_elapsed_time"].mean()
    std_before = successful_before["request_elapsed_time"].std()

    avg_after, std_after = None, None
    if after_fault is not None and not after_fault.empty:
        successful_after = after_fault[after_fault["success"]]
        avg_after = successful_after["request_elapsed_time"].mean()
        std_after = successful_after["request_elapsed_time"].std()

    # SLA violations (only successful requests exceeding the SLA)
    violations_before = (successful_before["request_elapsed_time"] > sla).sum()
    violations_after = (
        (successful_after["request_elapsed_time"] > sla).sum()
        if after_fault is not None and not after_fault.empty
        else None
    )

    return (
        success,
        failure,
        avg_before,
        std_before,
        avg_after,
        std_after,
        violations_before,
        violations_after,
    )


def parse_process_log(log_dir, process_name):
    process_ready_line = {
        "dynamo_Frontend": "added model",
        "dynamo_VllmWorker": "Starting VllmWorker instance with all registered endpoints",
        "dynamo_Processor": "Starting Processor instance with all registered endpoints",
        "dynamo_PrefillWorker": "Starting PrefillWorker instance with all registered endpoints",
    }
    process_shutdown_line = {
        "dynamo_Frontend": "SIGTERM received, starting graceful shutdown",
        "dynamo_VllmWorker": "Received shutdown signal, shutting down DistributedRuntime",
        "dynamo_Processor": "Received signal 15, initiating graceful shutdown",
        "dynamo_PrefillWorker": "Shutdown hooks completed successfully",
    }
    process_log_path = os.path.join(log_dir, "error.log")

    if not os.path.isfile(process_log_path):
        return None, None

    process_ready = []
    process_shutdown = []

    process_start_time = None

    with open(process_log_path, "r") as f:
        for line in f:
            clean_line = re.sub(r"\x1b\[.*?m", "", line.strip())  # Remove ANSI codes
            if not clean_line:
                continue

            parts = clean_line.split()
            if len(parts) < 2:
                continue

            try:
                # Parse timestamp (remove 'Z' for naive datetime)
                timestamp = datetime.fromisoformat(parts[0].replace("Z", ""))
            except ValueError:
                continue

            if not process_start_time:
                process_start_time = timestamp

            log_message = " ".join(parts[1:])

            relative_time = (timestamp - process_start_time).total_seconds()

            # Check for process start lines
            if process_name in process_ready_line:
                if process_ready_line[process_name] in log_message:
                    process_ready.append((timestamp, log_message, relative_time))

            # Check for process end lines
            if process_name in process_shutdown_line:
                if process_shutdown_line[process_name] in log_message:
                    process_shutdown.append((timestamp, log_message, relative_time))

    return process_ready, process_shutdown


def parse_watcher_log(test_dir, fault_time):
    before_requests = []
    after_requests = []
    watcher_log_path = os.path.join(test_dir, "watcher.log.txt")
    if not os.path.isfile(watcher_log_path):
        return None, None
    with open(watcher_log_path, "r") as f:
        for line in f:
            try:
                data = json.loads(line.strip())
            except json.JSONDecodeError:
                continue
            if "metrics" not in data:
                continue
            entry_time = datetime.fromisoformat(data["time"].replace("T", " "))
            for metric in data["metrics"]:
                if len(metric) != 2:
                    continue
                _, metric_data = metric
                if (
                    "num_requests_waiting" in metric_data
                    and "request_active_slots" in metric_data
                    and metric_data["request_active_slots"] > 0
                ):
                    if fault_time is None or entry_time <= fault_time:
                        before_requests.append(metric_data["num_requests_waiting"])
                    else:
                        after_requests.append(metric_data["num_requests_waiting"])

    avg_before = (
        sum(before_requests) / len(before_requests) if before_requests else None
    )
    avg_after = sum(after_requests) / len(after_requests) if after_requests else None
    return avg_before, avg_after


def calculate_recovery_time(test_dir, failure_type, fault_time):
    processes = [
        "dynamo_Frontend",
        "dynamo_Processor",
        "dynamo_VllmWorker",
        "dynamo_PrefillWorker",
    ]

    process_start_ends = {}
    start_time = None

    for process in processes:
        starts, ends = parse_process_log(os.path.join(test_dir, process), process)
        if starts:
            process_start_ends[process] = (starts, ends)

    if failure_type == "processor":
        start_time = process_start_ends["dynamo_Processor"][0][-1][0]
    elif failure_type == "frontend":
        start_time = process_start_ends["dynamo_Frontend"][0][-1][0]
    elif failure_type == "decode_worker":
        start_times = [
            x
            for x in process_start_ends["dynamo_VllmWorker"][0]
            if "VllmWorker:1" in x[1]
        ]
        if not start_times:
            return None
        start_time = start_times[-1][0]

    elif failure_type == "prefill_worker":
        if "dynamo_PrefillWorker" not in process_start_ends:
            return None
        start_times = [
            x
            for x in process_start_ends["dynamo_PrefillWorker"][0]
            if "PrefillWorker:1" in x[1]
        ]
        start_time = start_times[-1][0]

    if not start_time:
        return None

    if fault_time > start_time:
        return None

    return (start_time - fault_time).total_seconds()


def process_test_directory(test_dir):
    test_name = test_dir.split("test_worker_failure[", 1)[1].rstrip("]")
    failure_type = test_name.split("-")[-1]
    test_prefix = "-".join(test_name.split("-")[:-1])

    startup_time, fault_time, start_cmd = parse_test_log(
        os.path.join(test_dir, "test.log.txt")
    )
    df = parse_client_logs(test_dir)

    if df is None or df.empty:
        return None
    pending_requests_before, pending_requests_after = parse_watcher_log(
        test_dir, fault_time
    )
    (
        success,
        failure,
        avg_before,
        std_before,
        avg_after,
        std_after,
        violations_before,
        violations_after,
    ) = calculate_metrics(df, fault_time)

    recovery_time = calculate_recovery_time(test_dir, failure_type, fault_time)

    return {
        "test": test_prefix,
        "cmd": start_cmd,
        "failure": failure_type,
        "start_time": startup_time,
        "success_requests": success,
        "failed_requests": failure,
        "avg_latency_before": avg_before,
        "std_latency_before": std_before,
        "avg_latency_after": avg_after,
        "std_latency_after": std_after,
        "pending_requests_before": pending_requests_before,
        "pending_requests_after": pending_requests_after,
        "violations_before": violations_before,
        "violations_after": violations_after,
        "recovery_time": recovery_time,
    }


def main(logs_dir, tablefmt, log_paths=[]):
    results = []
    if log_paths:
        for log_path in log_paths:
            result = process_test_directory(log_path)
            if result:
                results.append(result)
    elif logs_dir:
        for entry in os.listdir(logs_dir):
            if entry.startswith("test_worker_failure[") and os.path.isdir(
                os.path.join(logs_dir, entry)
            ):
                result = process_test_directory(os.path.join(logs_dir, entry))
                if result:
                    results.append(result)

    # Group results by test prefix
    grouped: dict[str, list[dict[str, Any]]] = {}
    commands = {}
    for res in results:
        test_prefix = res["test"]
        if test_prefix not in grouped:
            grouped[test_prefix] = []
            commands[test_prefix] = res["cmd"]
        grouped[test_prefix].append(res)

    order = [
        "none",
        "frontend",
        "processor",
        "decode_worker",
        "prefill_worker",
        "vllm_worker",
    ]

    # Print grouped tables
    for test_prefix, group in grouped.items():
        new_group = []
        for failure in order:
            for res in group:
                if failure == res["failure"]:
                    new_group.append(res)
        group = new_group
        headers = [
            "Failure",
            "Startup Time",
            "Success",
            "Failed",
            "Latency Before",
            "Latency After",
            "Pending Before",
            "Pending After",
            "Violations Before",
            "Violations After",
            "Recovery Time",
        ]
        rows = []
        for res in group:
            row = [
                res["failure"],
                res["start_time"],  # if res["start_time"] is not None else "N/A",
                res["success_requests"],
                res["failed_requests"],
                res["avg_latency_before"],
                res["avg_latency_after"],
                res["pending_requests_before"],
                res["pending_requests_after"],
                res["violations_before"],
                res["violations_after"],
                res["recovery_time"],
            ]
            rows.append(row)

        print(f"\nTest Group: {test_prefix}")
        print(f"\nTest Command: {commands[test_prefix]}")
        print(
            tabulate(
                rows,
                headers,
                tablefmt=tablefmt,
                floatfmt=".2f",
                missingval="N/A",
                numalign="right",
                stralign="center",
            )
        )
        print("\n" + "=" * 80)


if __name__ == "__main__":
    parser = argparse.ArgumentParser(description="Parse test results")
    parser.add_argument("--log-dir", default=".", help="Path to the logs directory")
    parser.add_argument(
        "--format", choices=["fancy", "markdown"], default="fancy", help="Table format"
    )
    args = parser.parse_args()

    # Map format choices to tabulate formats
    tablefmt = (
        "fancy_grid" if args.format == "fancy" else "pipe"
    )  # Using pipe for markdown compatibility

    main(args.log_dir, tablefmt)