fixing search indexing2

This commit is contained in:
Priec
2026-09-04 15:55:38 +02:00
parent f787d16613
commit 4506643dff
15 changed files with 663 additions and 39 deletions

View File

@@ -13,6 +13,32 @@ service SearchHealth {
rpc GetHealth(komp_ac.common.Empty) returns (SearchHealthResponse);
}
service SearchAdmin {
rpc ReindexTableChunk(ReindexTableChunkRequest) returns (ReindexResponse);
rpc ReindexTable(ReindexTableRequest) returns (ReindexResponse);
rpc ReindexProfile(ReindexProfileRequest) returns (ReindexResponse);
}
message ReindexTableChunkRequest {
string profile_name = 1;
string table_name = 2;
repeated int64 row_ids = 3;
}
message ReindexTableRequest {
string profile_name = 1;
string table_name = 2;
}
message ReindexProfileRequest {
string profile_name = 1;
}
message ReindexResponse {
uint64 row_count = 1;
uint64 affected_tables = 2;
}
message SearchIndexError {
int64 job_id = 1;
string profile_name = 2;