mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
9828a52999
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
72 lines
1.8 KiB
Go
72 lines
1.8 KiB
Go
package queryserviceimpl
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/querypb"
|
|
)
|
|
|
|
type QueryService struct {
|
|
}
|
|
|
|
//serverBase interface
|
|
func (qs *QueryService) Init() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) Start() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) Stop() error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) GetComponentStates() (*internalpb2.ComponentStates, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) GetTimeTickChannel() (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) GetStatisticsChannel() (string, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
//queryService interface
|
|
func (qs *QueryService) RegisterNode(req querypb.RegisterNodeRequest) (querypb.RegisterNodeResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) ShowCollections(req querypb.ShowCollectionRequest) (querypb.ShowCollectionResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) LoadCollection(req querypb.LoadCollectionRequest) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) ReleaseCollection(req querypb.ReleaseCollectionRequest) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) ShowPartitions(req querypb.ShowPartitionRequest) (querypb.ShowPartitionResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) LoadPartitions(req querypb.LoadPartitionRequest) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) ReleasePartitions(req querypb.ReleasePartitionRequest) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) CreateQueryChannel() (querypb.CreateQueryChannelResponse, error) {
|
|
panic("implement me")
|
|
}
|
|
|
|
func (qs *QueryService) GetPartitionStates(req querypb.PartitionStatesRequest) (querypb.PartitionStatesResponse, error) {
|
|
panic("implement me")
|
|
}
|