File tree 5 files changed +11
-1
lines changed
5 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -1643,6 +1643,10 @@ message TSchemeShardConfig {
1643
1643
1644
1644
// number of shards per table
1645
1645
optional uint32 MaxCdcInitialScanShardsInFlight = 5 [default = 10 ];
1646
+
1647
+ // number of shards per table
1648
+ // 0 means default - NKikimrIndexBuilder.TIndexBuildSettings.max_shards_in_flight
1649
+ optional uint32 MaxRestoreBuildIndexShardsInFlight = 6 [default = 1000 ];
1646
1650
}
1647
1651
1648
1652
message TCompactionConfig {
Original file line number Diff line number Diff line change @@ -1363,7 +1363,7 @@ NKikimrResourceBroker::TResourceBrokerConfig MakeDefaultConfig()
1363
1363
queue = config.AddQueues ();
1364
1364
queue->SetName (" queue_restore" );
1365
1365
queue->SetWeight (100 );
1366
- queue->MutableLimit ()->SetCpu (2 );
1366
+ queue->MutableLimit ()->SetCpu (10 );
1367
1367
1368
1368
queue = config.AddQueues ();
1369
1369
queue->SetName (NLocalDb::KqpResourceManagerQueue);
Original file line number Diff line number Diff line change @@ -4475,6 +4475,7 @@ void TSchemeShard::OnActivateExecutor(const TActorContext &ctx) {
4475
4475
ConfigureStatsBatching (appData->SchemeShardConfig , ctx);
4476
4476
ConfigureStatsOperations (appData->SchemeShardConfig , ctx);
4477
4477
MaxCdcInitialScanShardsInFlight = appData->SchemeShardConfig .GetMaxCdcInitialScanShardsInFlight ();
4478
+ MaxRestoreBuildIndexShardsInFlight = appData->SchemeShardConfig .GetMaxRestoreBuildIndexShardsInFlight ();
4478
4479
4479
4480
ConfigureBackgroundCleaningQueue (appData->BackgroundCleaningConfig , ctx);
4480
4481
@@ -6991,6 +6992,7 @@ void TSchemeShard::ApplyConsoleConfigs(const NKikimrConfig::TAppConfig& appConfi
6991
6992
ConfigureStatsBatching (schemeShardConfig, ctx);
6992
6993
ConfigureStatsOperations (schemeShardConfig, ctx);
6993
6994
MaxCdcInitialScanShardsInFlight = schemeShardConfig.GetMaxCdcInitialScanShardsInFlight ();
6995
+ MaxRestoreBuildIndexShardsInFlight = schemeShardConfig.GetMaxRestoreBuildIndexShardsInFlight ();
6994
6996
}
6995
6997
6996
6998
if (appConfig.HasTableProfilesConfig ()) {
Original file line number Diff line number Diff line change @@ -347,6 +347,7 @@ class TSchemeShard
347
347
348
348
TActorId CdcStreamScanFinalizer;
349
349
ui32 MaxCdcInitialScanShardsInFlight = 10 ;
350
+ ui32 MaxRestoreBuildIndexShardsInFlight = 0 ;
350
351
351
352
TDuration StatsMaxExecuteTime;
352
353
TDuration StatsBatchTimeout;
Original file line number Diff line number Diff line change @@ -218,6 +218,9 @@ THolder<TEvIndexBuilder::TEvCreateRequest> BuildIndexPropose(
218
218
219
219
const TPath dstPath = TPath::Init (item.DstPathId , ss);
220
220
settings.set_source_path (dstPath.PathString ());
221
+ if (ss->MaxRestoreBuildIndexShardsInFlight ) {
222
+ settings.set_max_shards_in_flight (ss->MaxRestoreBuildIndexShardsInFlight );
223
+ }
221
224
222
225
Y_ABORT_UNLESS (item.NextIndexIdx < item.Scheme .indexes_size ());
223
226
settings.mutable_index ()->CopyFrom (item.Scheme .indexes (item.NextIndexIdx ));
You can’t perform that action at this time.
0 commit comments