milvus/pkg/proto/workerpb/worker_grpc.pb.go
cai.zhang b069eeecd2
fix: Added GetMetrics back to IndexNodeServer to ensure compatibility (#45073)
issue: #45070

---------

Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
2025-10-24 17:00:06 +08:00

496 lines
19 KiB
Go

// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc v3.21.4
// source: worker.proto
package workerpb
import (
context "context"
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
milvuspb "github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
const (
IndexNode_CreateJob_FullMethodName = "/milvus.proto.index.IndexNode/CreateJob"
IndexNode_QueryJobs_FullMethodName = "/milvus.proto.index.IndexNode/QueryJobs"
IndexNode_DropJobs_FullMethodName = "/milvus.proto.index.IndexNode/DropJobs"
IndexNode_GetJobStats_FullMethodName = "/milvus.proto.index.IndexNode/GetJobStats"
IndexNode_CreateJobV2_FullMethodName = "/milvus.proto.index.IndexNode/CreateJobV2"
IndexNode_QueryJobsV2_FullMethodName = "/milvus.proto.index.IndexNode/QueryJobsV2"
IndexNode_DropJobsV2_FullMethodName = "/milvus.proto.index.IndexNode/DropJobsV2"
IndexNode_GetMetrics_FullMethodName = "/milvus.proto.index.IndexNode/GetMetrics"
IndexNode_CreateTask_FullMethodName = "/milvus.proto.index.IndexNode/CreateTask"
IndexNode_QueryTask_FullMethodName = "/milvus.proto.index.IndexNode/QueryTask"
IndexNode_DropTask_FullMethodName = "/milvus.proto.index.IndexNode/DropTask"
)
// IndexNodeClient is the client API for IndexNode service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
type IndexNodeClient interface {
// Deprecated
CreateJob(ctx context.Context, in *CreateJobRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
// Deprecated
QueryJobs(ctx context.Context, in *QueryJobsRequest, opts ...grpc.CallOption) (*QueryJobsResponse, error)
// Deprecated
DropJobs(ctx context.Context, in *DropJobsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
// Deprecated
GetJobStats(ctx context.Context, in *GetJobStatsRequest, opts ...grpc.CallOption) (*GetJobStatsResponse, error)
// Deprecated
CreateJobV2(ctx context.Context, in *CreateJobV2Request, opts ...grpc.CallOption) (*commonpb.Status, error)
// Deprecated
QueryJobsV2(ctx context.Context, in *QueryJobsV2Request, opts ...grpc.CallOption) (*QueryJobsV2Response, error)
// Deprecated
DropJobsV2(ctx context.Context, in *DropJobsV2Request, opts ...grpc.CallOption) (*commonpb.Status, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
CreateTask(ctx context.Context, in *CreateTaskRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
QueryTask(ctx context.Context, in *QueryTaskRequest, opts ...grpc.CallOption) (*QueryTaskResponse, error)
DropTask(ctx context.Context, in *DropTaskRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
}
type indexNodeClient struct {
cc grpc.ClientConnInterface
}
func NewIndexNodeClient(cc grpc.ClientConnInterface) IndexNodeClient {
return &indexNodeClient{cc}
}
func (c *indexNodeClient) CreateJob(ctx context.Context, in *CreateJobRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_CreateJob_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) QueryJobs(ctx context.Context, in *QueryJobsRequest, opts ...grpc.CallOption) (*QueryJobsResponse, error) {
out := new(QueryJobsResponse)
err := c.cc.Invoke(ctx, IndexNode_QueryJobs_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) DropJobs(ctx context.Context, in *DropJobsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_DropJobs_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) GetJobStats(ctx context.Context, in *GetJobStatsRequest, opts ...grpc.CallOption) (*GetJobStatsResponse, error) {
out := new(GetJobStatsResponse)
err := c.cc.Invoke(ctx, IndexNode_GetJobStats_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) CreateJobV2(ctx context.Context, in *CreateJobV2Request, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_CreateJobV2_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) QueryJobsV2(ctx context.Context, in *QueryJobsV2Request, opts ...grpc.CallOption) (*QueryJobsV2Response, error) {
out := new(QueryJobsV2Response)
err := c.cc.Invoke(ctx, IndexNode_QueryJobsV2_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) DropJobsV2(ctx context.Context, in *DropJobsV2Request, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_DropJobsV2_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
out := new(milvuspb.GetMetricsResponse)
err := c.cc.Invoke(ctx, IndexNode_GetMetrics_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) CreateTask(ctx context.Context, in *CreateTaskRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_CreateTask_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) QueryTask(ctx context.Context, in *QueryTaskRequest, opts ...grpc.CallOption) (*QueryTaskResponse, error) {
out := new(QueryTaskResponse)
err := c.cc.Invoke(ctx, IndexNode_QueryTask_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *indexNodeClient) DropTask(ctx context.Context, in *DropTaskRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, IndexNode_DropTask_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// IndexNodeServer is the server API for IndexNode service.
// All implementations should embed UnimplementedIndexNodeServer
// for forward compatibility
type IndexNodeServer interface {
// Deprecated
CreateJob(context.Context, *CreateJobRequest) (*commonpb.Status, error)
// Deprecated
QueryJobs(context.Context, *QueryJobsRequest) (*QueryJobsResponse, error)
// Deprecated
DropJobs(context.Context, *DropJobsRequest) (*commonpb.Status, error)
// Deprecated
GetJobStats(context.Context, *GetJobStatsRequest) (*GetJobStatsResponse, error)
// Deprecated
CreateJobV2(context.Context, *CreateJobV2Request) (*commonpb.Status, error)
// Deprecated
QueryJobsV2(context.Context, *QueryJobsV2Request) (*QueryJobsV2Response, error)
// Deprecated
DropJobsV2(context.Context, *DropJobsV2Request) (*commonpb.Status, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
CreateTask(context.Context, *CreateTaskRequest) (*commonpb.Status, error)
QueryTask(context.Context, *QueryTaskRequest) (*QueryTaskResponse, error)
DropTask(context.Context, *DropTaskRequest) (*commonpb.Status, error)
}
// UnimplementedIndexNodeServer should be embedded to have forward compatible implementations.
type UnimplementedIndexNodeServer struct {
}
func (UnimplementedIndexNodeServer) CreateJob(context.Context, *CreateJobRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateJob not implemented")
}
func (UnimplementedIndexNodeServer) QueryJobs(context.Context, *QueryJobsRequest) (*QueryJobsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method QueryJobs not implemented")
}
func (UnimplementedIndexNodeServer) DropJobs(context.Context, *DropJobsRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method DropJobs not implemented")
}
func (UnimplementedIndexNodeServer) GetJobStats(context.Context, *GetJobStatsRequest) (*GetJobStatsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetJobStats not implemented")
}
func (UnimplementedIndexNodeServer) CreateJobV2(context.Context, *CreateJobV2Request) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateJobV2 not implemented")
}
func (UnimplementedIndexNodeServer) QueryJobsV2(context.Context, *QueryJobsV2Request) (*QueryJobsV2Response, error) {
return nil, status.Errorf(codes.Unimplemented, "method QueryJobsV2 not implemented")
}
func (UnimplementedIndexNodeServer) DropJobsV2(context.Context, *DropJobsV2Request) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method DropJobsV2 not implemented")
}
func (UnimplementedIndexNodeServer) GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
}
func (UnimplementedIndexNodeServer) CreateTask(context.Context, *CreateTaskRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateTask not implemented")
}
func (UnimplementedIndexNodeServer) QueryTask(context.Context, *QueryTaskRequest) (*QueryTaskResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method QueryTask not implemented")
}
func (UnimplementedIndexNodeServer) DropTask(context.Context, *DropTaskRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method DropTask not implemented")
}
// UnsafeIndexNodeServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to IndexNodeServer will
// result in compilation errors.
type UnsafeIndexNodeServer interface {
mustEmbedUnimplementedIndexNodeServer()
}
func RegisterIndexNodeServer(s grpc.ServiceRegistrar, srv IndexNodeServer) {
s.RegisterService(&IndexNode_ServiceDesc, srv)
}
func _IndexNode_CreateJob_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateJobRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).CreateJob(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_CreateJob_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).CreateJob(ctx, req.(*CreateJobRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_QueryJobs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QueryJobsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).QueryJobs(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_QueryJobs_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).QueryJobs(ctx, req.(*QueryJobsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_DropJobs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DropJobsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).DropJobs(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_DropJobs_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).DropJobs(ctx, req.(*DropJobsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_GetJobStats_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetJobStatsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).GetJobStats(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_GetJobStats_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).GetJobStats(ctx, req.(*GetJobStatsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_CreateJobV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateJobV2Request)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).CreateJobV2(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_CreateJobV2_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).CreateJobV2(ctx, req.(*CreateJobV2Request))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_QueryJobsV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QueryJobsV2Request)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).QueryJobsV2(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_QueryJobsV2_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).QueryJobsV2(ctx, req.(*QueryJobsV2Request))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_DropJobsV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DropJobsV2Request)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).DropJobsV2(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_DropJobsV2_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).DropJobsV2(ctx, req.(*DropJobsV2Request))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(milvuspb.GetMetricsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).GetMetrics(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_GetMetrics_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).GetMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_CreateTask_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateTaskRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).CreateTask(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_CreateTask_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).CreateTask(ctx, req.(*CreateTaskRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_QueryTask_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(QueryTaskRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).QueryTask(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_QueryTask_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).QueryTask(ctx, req.(*QueryTaskRequest))
}
return interceptor(ctx, in, info, handler)
}
func _IndexNode_DropTask_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DropTaskRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(IndexNodeServer).DropTask(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: IndexNode_DropTask_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(IndexNodeServer).DropTask(ctx, req.(*DropTaskRequest))
}
return interceptor(ctx, in, info, handler)
}
// IndexNode_ServiceDesc is the grpc.ServiceDesc for IndexNode service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var IndexNode_ServiceDesc = grpc.ServiceDesc{
ServiceName: "milvus.proto.index.IndexNode",
HandlerType: (*IndexNodeServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "CreateJob",
Handler: _IndexNode_CreateJob_Handler,
},
{
MethodName: "QueryJobs",
Handler: _IndexNode_QueryJobs_Handler,
},
{
MethodName: "DropJobs",
Handler: _IndexNode_DropJobs_Handler,
},
{
MethodName: "GetJobStats",
Handler: _IndexNode_GetJobStats_Handler,
},
{
MethodName: "CreateJobV2",
Handler: _IndexNode_CreateJobV2_Handler,
},
{
MethodName: "QueryJobsV2",
Handler: _IndexNode_QueryJobsV2_Handler,
},
{
MethodName: "DropJobsV2",
Handler: _IndexNode_DropJobsV2_Handler,
},
{
MethodName: "GetMetrics",
Handler: _IndexNode_GetMetrics_Handler,
},
{
MethodName: "CreateTask",
Handler: _IndexNode_CreateTask_Handler,
},
{
MethodName: "QueryTask",
Handler: _IndexNode_QueryTask_Handler,
},
{
MethodName: "DropTask",
Handler: _IndexNode_DropTask_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "worker.proto",
}