Skip to content

Commit 829e797

Browse files
authored
Add PIT RPCs to SearchService (opensearch-project#469)
* Add PIT RPCs to SearchService Signed-off-by: xil <fridalu66@gmail.com> * Update changelog for PR opensearch-project#469 Signed-off-by: xil <fridalu66@gmail.com> --------- Signed-off-by: xil <fridalu66@gmail.com>
1 parent e638d53 commit 829e797

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
77
- Add support for double, int and long in BinaryFieldValue ([#460](https://github.com/opensearch-project/opensearch-protobufs/pull/460))
88
- Add Create PIT support to protobuf generation ([#466](https://github.com/opensearch-project/opensearch-protobufs/pull/466)).
99
- Add Delete PIT support to protobuf generation ([#468](https://github.com/opensearch-project/opensearch-protobufs/pull/468)).
10+
- Add PIT RPCs to `SearchService` ([#469](https://github.com/opensearch-project/opensearch-protobufs/pull/469)).
1011

1112
### Changed
1213

protos/services/search_service.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ import "protos/schemas/common.proto";
2222
service SearchService {
2323
rpc Search(SearchRequest) returns (SearchResponse) {}
2424

25+
rpc CreatePit(CreatePitRequest) returns (CreatePITResponse) {}
26+
27+
rpc DeletePit(DeletePitRequest) returns (DeletePITResponse) {}
28+
2529
// Server side grpc stream endpoint
2630
rpc ServerStreamSearch(SearchRequest) returns (stream SearchResponse) {}
2731
}

0 commit comments

Comments
 (0)