aboutsummaryrefslogtreecommitdiffstats
path: root/yt/yt/client/journal_client/config.cpp
blob: dde03da128db33fd93fb4b1e2fe0b329935e1d08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "config.h"
namespace NYT::NJournalClient {

////////////////////////////////////////////////////////////////////////////////

void TChunkReaderConfig::Register(TRegistrar registrar)
{
    registrar.Parameter("replica_data_size_read_threshold", &TThis::ReplicaDataSizeReadThreshold)
        .Default(1_MB);

    registrar.Parameter("slow_path_delay", &TThis::SlowPathDelay)
        .Default(TDuration::Seconds(5));
}

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT::NJournalClient