Skip to content

Commit

Permalink
fix tx writing limit (ydb-platform#10810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored and zverevgeny committed Jan 1, 2025
1 parent 32a2766 commit cee4e23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/tx/columnshard/common/limits.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cee4e23

Please sign in to comment.