Skip to content

Commit

Permalink
fix tx writing limit (#10810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 authored Oct 24, 2024
1 parent fb357e7 commit e233933
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 e233933

Please sign in to comment.