Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge to stable-24-1: use proper compaction policy for SA tables #5517

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ydb/core/statistics/aggregator/tx_init_schema.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ struct TStatisticsAggregator::TTxInitSchema : public TTxBase {

NIceDb::TNiceDb(txc.DB).Materialize<Schema>();

static constexpr NIceDb::TTableId bigTableIds[] = {
Schema::BaseStats::TableId,
};

for (auto id : bigTableIds) {
const auto* tableInfo = txc.DB.GetScheme().GetTableInfo(id);
if (!tableInfo || !tableInfo->CompactionPolicy) {
txc.DB.Alter().SetCompactionPolicy(id, *NLocalDb::CreateDefaultUserTablePolicy());
}
}

return true;
}

Expand Down
Loading