@@ -151,6 +151,8 @@ TDataShard::TDataShard(const TActorId &tablet, TTabletStorageInfo *info)
151
151
, TtlReadAheadHi(0 , 0 , 128 *1024 *1024 )
152
152
, IncrementalRestoreReadAheadLo(0 , 0 , 64 *1024 *1024 )
153
153
, IncrementalRestoreReadAheadHi(0 , 0 , 128 *1024 *1024 )
154
+ , CdcInitialScanReadAheadLo(0 , 0 , 64 *1024 *1024 )
155
+ , CdcInitialScanReadAheadHi(0 , 0 , 128 *1024 *1024 )
154
156
, EnableLockedWrites(1 , 0 , 1 )
155
157
, MaxLockedWritesPerKey(1000 , 0 , 1000000 )
156
158
, EnableLeaderLeases(1 , 0 , 1 )
@@ -328,6 +330,9 @@ void TDataShard::IcbRegister() {
328
330
appData->Icb ->RegisterSharedControl (IncrementalRestoreReadAheadLo, " DataShardControls.IncrementalRestoreReadAheadLo" );
329
331
appData->Icb ->RegisterSharedControl (IncrementalRestoreReadAheadHi, " DataShardControls.IncrementalRestoreReadAheadHi" );
330
332
333
+ appData->Icb ->RegisterSharedControl (CdcInitialScanReadAheadLo, " DataShardControls.CdcInitialScanReadAheadLo" );
334
+ appData->Icb ->RegisterSharedControl (CdcInitialScanReadAheadHi, " DataShardControls.CdcInitialScanReadAheadHi" );
335
+
331
336
IcbRegistered = true ;
332
337
}
333
338
}
0 commit comments