diff options
author | Aleksandr Dmitriev <monster@ydb.tech> | 2025-03-03 20:20:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-03 20:20:43 +0300 |
commit | d35b323cf677658189b47e48a43230fafd346e9e (patch) | |
tree | c896ac4700c3b0fc0210ff9dddcec5e020652a0e | |
parent | 805e72e574930754e6b682d5367af75ca2aead91 (diff) | |
download | ydb-d35b323cf677658189b47e48a43230fafd346e9e.tar.gz |
reduce interconnect outgoing stream buffer size to 32KB (#15264)
-rw-r--r-- | ydb/library/actors/interconnect/outgoing_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/actors/interconnect/outgoing_stream.h b/ydb/library/actors/interconnect/outgoing_stream.h index 97f2d7fb61..3183c19589 100644 --- a/ydb/library/actors/interconnect/outgoing_stream.h +++ b/ydb/library/actors/interconnect/outgoing_stream.h @@ -267,6 +267,6 @@ namespace NInterconnect { } }; - using TOutgoingStream = TOutgoingStreamT<262144>; + using TOutgoingStream = TOutgoingStreamT<32768>; } // NInterconnect |