fixing search indexing2
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user