From 5c6285c089767cbf71c2c47e34bcf60bb4b210fc Mon Sep 17 00:00:00 2001 From: rongchenghao Date: Sun, 9 Aug 2026 14:41:52 +0800 Subject: [PATCH] [perf] Pack serially in YuanrongStorageClient (DS_MAX_WORKERS 16 -> 1) --- transfer_queue/storage/clients/yuanrong_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transfer_queue/storage/clients/yuanrong_client.py b/transfer_queue/storage/clients/yuanrong_client.py index 3512805f..6dc5c92a 100644 --- a/transfer_queue/storage/clients/yuanrong_client.py +++ b/transfer_queue/storage/clients/yuanrong_client.py @@ -197,7 +197,7 @@ class GeneralKVClientAdapter(StorageStrategy): PUT_KEYS_LIMIT: int = 10_000 GET_CLEAR_KEYS_LIMIT: int = 10_000 - DS_MAX_WORKERS: int = 16 + DS_MAX_WORKERS: int = 1 def __init__(self, config: dict): port = config.get("worker_port")