Skip to content

Commit e987bf6

Browse files
authored
24-4-2-hotfix: Boost restore (#15838)
1 parent ffaded1 commit e987bf6

File tree

5 files changed

+11
-1
lines changed

5 files changed

+11
-1
lines changed

ydb/core/protos/config.proto

+4
Original file line numberDiff line numberDiff line change
@@ -1643,6 +1643,10 @@ message TSchemeShardConfig {
16431643

16441644
// number of shards per table
16451645
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];
16461650
}
16471651

16481652
message TCompactionConfig {

ydb/core/tablet/resource_broker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1363,7 +1363,7 @@ NKikimrResourceBroker::TResourceBrokerConfig MakeDefaultConfig()
13631363
queue = config.AddQueues();
13641364
queue->SetName("queue_restore");
13651365
queue->SetWeight(100);
1366-
queue->MutableLimit()->SetCpu(2);
1366+
queue->MutableLimit()->SetCpu(10);
13671367

13681368
queue = config.AddQueues();
13691369
queue->SetName(NLocalDb::KqpResourceManagerQueue);

ydb/core/tx/schemeshard/schemeshard_impl.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -4475,6 +4475,7 @@ void TSchemeShard::OnActivateExecutor(const TActorContext &ctx) {
44754475
ConfigureStatsBatching(appData->SchemeShardConfig, ctx);
44764476
ConfigureStatsOperations(appData->SchemeShardConfig, ctx);
44774477
MaxCdcInitialScanShardsInFlight = appData->SchemeShardConfig.GetMaxCdcInitialScanShardsInFlight();
4478+
MaxRestoreBuildIndexShardsInFlight = appData->SchemeShardConfig.GetMaxRestoreBuildIndexShardsInFlight();
44784479

44794480
ConfigureBackgroundCleaningQueue(appData->BackgroundCleaningConfig, ctx);
44804481

@@ -6991,6 +6992,7 @@ void TSchemeShard::ApplyConsoleConfigs(const NKikimrConfig::TAppConfig& appConfi
69916992
ConfigureStatsBatching(schemeShardConfig, ctx);
69926993
ConfigureStatsOperations(schemeShardConfig, ctx);
69936994
MaxCdcInitialScanShardsInFlight = schemeShardConfig.GetMaxCdcInitialScanShardsInFlight();
6995+
MaxRestoreBuildIndexShardsInFlight = schemeShardConfig.GetMaxRestoreBuildIndexShardsInFlight();
69946996
}
69956997

69966998
if (appConfig.HasTableProfilesConfig()) {

ydb/core/tx/schemeshard/schemeshard_impl.h

+1
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@ class TSchemeShard
347347

348348
TActorId CdcStreamScanFinalizer;
349349
ui32 MaxCdcInitialScanShardsInFlight = 10;
350+
ui32 MaxRestoreBuildIndexShardsInFlight = 0;
350351

351352
TDuration StatsMaxExecuteTime;
352353
TDuration StatsBatchTimeout;

ydb/core/tx/schemeshard/schemeshard_import_flow_proposals.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@ THolder<TEvIndexBuilder::TEvCreateRequest> BuildIndexPropose(
218218

219219
const TPath dstPath = TPath::Init(item.DstPathId, ss);
220220
settings.set_source_path(dstPath.PathString());
221+
if (ss->MaxRestoreBuildIndexShardsInFlight) {
222+
settings.set_max_shards_in_flight(ss->MaxRestoreBuildIndexShardsInFlight);
223+
}
221224

222225
Y_ABORT_UNLESS(item.NextIndexIdx < item.Scheme.indexes_size());
223226
settings.mutable_index()->CopyFrom(item.Scheme.indexes(item.NextIndexIdx));

0 commit comments

Comments
 (0)