diff options
author | osidorkin <osidorkin@yandex-team.com> | 2024-09-13 09:15:13 +0300 |
---|---|---|
committer | osidorkin <osidorkin@yandex-team.com> | 2024-09-13 09:27:37 +0300 |
commit | 02f70f11e125e828e4ac5ea843ca7c657cbb45cd (patch) | |
tree | 82180abfb686372507c4d48757337858df14d998 | |
parent | 71eed8c25385268bfda07a811445c269b808bf93 (diff) | |
download | ydb-02f70f11e125e828e4ac5ea843ca7c657cbb45cd.tar.gz |
YT-21101: Reduce MaxDataWeight for chaos table puller to 20 MB
commit_hash:21731e9bc984c0fe414785c244af8fde631bdc9e
-rw-r--r-- | yt/yt/client/api/queue_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/api/queue_client.h b/yt/yt/client/api/queue_client.h index ad489e547a..658dbd5b39 100644 --- a/yt/yt/client/api/queue_client.h +++ b/yt/yt/client/api/queue_client.h @@ -27,7 +27,7 @@ struct TPullRowsOptions NChaosClient::TReplicationProgress ReplicationProgress; NTransactionClient::TTimestamp UpperTimestamp = NTransactionClient::NullTimestamp; NTableClient::TTableSchemaPtr TableSchema; - i64 MaxDataWeight = 1_GB; + i64 MaxDataWeight = 20_MB; IReservingMemoryUsageTrackerPtr MemoryTracker; }; |