diff options
author | ivanmorozov333 <ivanmorozov@ydb.tech> | 2024-10-24 13:10:16 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-24 13:10:16 +0300 |
commit | e2339333d2b26405e9584d584f193f1009d0d7e0 (patch) | |
tree | bd238c8f7d2e9403c64f57342caabadea807175e | |
parent | fb357e75228595453a5ba5d3feaaad0c6e721250 (diff) | |
download | ydb-e2339333d2b26405e9584d584f193f1009d0d7e0.tar.gz |
fix tx writing limit (#10810)
-rw-r--r-- | ydb/core/tx/columnshard/common/limits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/columnshard/common/limits.h b/ydb/core/tx/columnshard/common/limits.h index bef0c657b0..b30432dfb2 100644 --- a/ydb/core/tx/columnshard/common/limits.h +++ b/ydb/core/tx/columnshard/common/limits.h @@ -4,7 +4,7 @@ namespace NKikimr::NOlap { class TGlobalLimits { public: - static constexpr inline ui64 TxWriteLimitBytes = 312 * 1024 * 1024; + static constexpr inline ui64 TxWriteLimitBytes = 256 * 1024 * 1024; static constexpr inline ui64 TTLCompactionMemoryLimit = 1ULL << 30; static constexpr inline ui64 InsertCompactionMemoryLimit = 1ULL << 30; static constexpr inline ui64 GeneralCompactionMemoryLimit = 3ULL << 30; |