498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
76 lines
2.9 KiB
Go
76 lines
2.9 KiB
Go
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/hookutil"
|
|
"github.com/milvus-io/milvus/pkg/v3/metrics"
|
|
"github.com/milvus-io/milvus/pkg/v3/mlog"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/paramtable"
|
|
)
|
|
|
|
func UnaryServerHookInterceptor() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
return HookInterceptor(ctx, req, GetCurUserFromContextOrDefault(ctx), info.FullMethod, handler)
|
|
}
|
|
}
|
|
|
|
func HookInterceptor(ctx context.Context, req any, userName, fullMethod string, handler grpc.UnaryHandler) (interface{}, error) {
|
|
hoo := hookutil.GetHook()
|
|
var (
|
|
newCtx context.Context
|
|
isMock bool
|
|
mockResp interface{}
|
|
realResp interface{}
|
|
realErr error
|
|
err error
|
|
)
|
|
|
|
if isMock, mockResp, err = hoo.Mock(ctx, req, fullMethod); isMock {
|
|
mlog.Info(ctx, "hook mock", mlog.String("user", userName),
|
|
mlog.String("full method", fullMethod), mlog.Err(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookMock, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod, err)
|
|
if err != nil {
|
|
// NOTE: don't use the merr, because it will cause the wrong retry behavior in the sdk
|
|
err = status.Error(codes.InvalidArgument, "detail: "+err.Error())
|
|
}
|
|
return mockResp, err
|
|
}
|
|
|
|
if newCtx, err = hoo.Before(ctx, req, fullMethod); err != nil {
|
|
mlog.Warn(ctx, "hook before error", mlog.String("user", userName), mlog.String("full method", fullMethod),
|
|
mlog.Any("request", req), mlog.Err(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookBefore, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod, err)
|
|
// NOTE: don't use the merr, because it will cause the wrong retry behavior in the sdk
|
|
return nil, status.Error(codes.InvalidArgument, "detail: "+err.Error())
|
|
}
|
|
realResp, realErr = handler(newCtx, req)
|
|
if err = hoo.After(newCtx, realResp, realErr, fullMethod); err != nil {
|
|
mlog.Warn(ctx, "hook after error", mlog.String("user", userName), mlog.String("full method", fullMethod),
|
|
mlog.Any("request", req), mlog.Err(err))
|
|
metrics.ProxyHookFunc.WithLabelValues(metrics.HookAfter, fullMethod).Inc()
|
|
updateProxyFunctionCallMetric(fullMethod, err)
|
|
// NOTE: don't use the merr, because it will cause the wrong retry behavior in the sdk
|
|
return nil, status.Error(codes.InvalidArgument, "detail: "+err.Error())
|
|
}
|
|
return realResp, realErr
|
|
}
|
|
|
|
func updateProxyFunctionCallMetric(fullMethod string, err error) {
|
|
strs := strings.Split(fullMethod, "/")
|
|
method := strs[len(strs)-1]
|
|
if method == "" {
|
|
return
|
|
}
|
|
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), method, metrics.TotalLabel, "", "").Inc()
|
|
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10), method, failMetricLabel(err), "", "").Inc()
|
|
}
|