Skip to content

Commit

Permalink
[coordinator] Add tag search completion (#1103)
Browse files Browse the repository at this point in the history
* Initial commit with new protos and scaffolding

* Proto update in response to PR

* Refactor tag search endpoint to expose RawSearch method

* Finish tag search grpc endpoint on server side

* Add client code to decompress m3search rpc response, PR responses to WIP

* Add decompressed tag search decoding

* linter

* Add CompleteTags request protos

* Add autocomplete tags endpoint to proto, with client that is able to decode results

* PR responses, changes to proto definition

* PR response to change search response type protos

* Rename sort functions

* PR responses

* PR response

* PR response in client

* Fixing merge issues

* delete bad merge artifact
  • Loading branch information
arnikola committed Nov 14, 2018
1 parent 5a52e70 commit 7f13f8f
Show file tree
Hide file tree
Showing 21 changed files with 4,787 additions and 1,226 deletions.
3 changes: 3 additions & 0 deletions src/query/errors/storage.go
Expand Up @@ -66,4 +66,7 @@ var (

// ErrOnlyFixedResSupported is an error returned we try to get step size for variable resolution
ErrOnlyFixedResSupported = errors.New("only fixed resolution supported")

// ErrUnexpectedGRPCResponseType is an error returned when rpc response type is unhandled
ErrUnexpectedGRPCResponseType = errors.New("unexpected grpc response type")
)

0 comments on commit 7f13f8f

Please sign in to comment.