Skip to content

Commit

Permalink
[dbnode] Move fetchTagged and aggregateRaw into the performant endpoi…
Browse files Browse the repository at this point in the history
…nts category (#2572)
  • Loading branch information
robskillington authored Sep 4, 2020
1 parent fb5b4a9 commit c2b2272
Show file tree
Hide file tree
Showing 2 changed files with 638 additions and 639 deletions.
5 changes: 2 additions & 3 deletions src/dbnode/generated/thrift/rpc.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,17 @@ exception WriteBatchRawErrors {
service Node {
// Friendly not highly performant read/write endpoints
QueryResult query(1: QueryRequest req) throws (1: Error err)
AggregateQueryRawResult aggregateRaw(1: AggregateQueryRawRequest req) throws (1: Error err)
AggregateQueryResult aggregate(1: AggregateQueryRequest req) throws (1: Error err)
FetchResult fetch(1: FetchRequest req) throws (1: Error err)
FetchTaggedResult fetchTagged(1: FetchTaggedRequest req) throws (1: Error err)
void write(1: WriteRequest req) throws (1: Error err)
void writeTagged(1: WriteTaggedRequest req) throws (1: Error err)

// Performant read/write endpoints
FetchBatchRawResult fetchBatchRaw(1: FetchBatchRawRequest req) throws (1: Error err)
FetchBatchRawResult fetchBatchRawV2(1: FetchBatchRawV2Request req) throws (1: Error err)
FetchBlocksRawResult fetchBlocksRaw(1: FetchBlocksRawRequest req) throws (1: Error err)

FetchTaggedResult fetchTagged(1: FetchTaggedRequest req) throws (1: Error err)
AggregateQueryRawResult aggregateRaw(1: AggregateQueryRawRequest req) throws (1: Error err)
FetchBlocksMetadataRawV2Result fetchBlocksMetadataRawV2(1: FetchBlocksMetadataRawV2Request req) throws (1: Error err)
void writeBatchRaw(1: WriteBatchRawRequest req) throws (1: WriteBatchRawErrors err)
void writeBatchRawV2(1: WriteBatchRawV2Request req) throws (1: WriteBatchRawErrors err)
Expand Down
Loading

0 comments on commit c2b2272

Please sign in to comment.