From 1b99aa31592c6570b50d7dd47d2809cb3b09a8a6 Mon Sep 17 00:00:00 2001 From: ye-qiannan Date: Thu, 11 Dec 2025 19:56:41 +0800 Subject: [PATCH] adapt urma_read sge max 6 --- src/ubsocket/brpc/brpc_file_descriptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ubsocket/brpc/brpc_file_descriptor.h b/src/ubsocket/brpc/brpc_file_descriptor.h index 769f77c..02d083b 100644 --- a/src/ubsocket/brpc/brpc_file_descriptor.h +++ b/src/ubsocket/brpc/brpc_file_descriptor.h @@ -434,7 +434,7 @@ public: return 65535; } - static const uint32_t SGE_MAX = 16; + static const uint32_t SGE_MAX = 6; // currently, the upper limit of post batch for umq is 64 static const uint32_t POST_BATCH_MAX = 64; // currently, poll batch use 32 is for the balance of performance and efficiency -- Gitee