Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

62 lines
1.9 KiB
Go

package connection
import (
"context"
"strconv"
"google.golang.org/grpc"
"google.golang.org/grpc/metadata"
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
"github.com/milvus-io/milvus/pkg/v3/mlog"
"github.com/milvus-io/milvus/pkg/v3/util"
"github.com/milvus-io/milvus/pkg/v3/util/funcutil"
"github.com/milvus-io/milvus/pkg/v3/util/merr"
)
func ClientInfoFields(info *commonpb.ClientInfo) []mlog.Field {
fields := []mlog.Field{
mlog.String("sdk_type", info.GetSdkType()),
mlog.String("sdk_version", info.GetSdkVersion()),
mlog.String("local_time", info.GetLocalTime()),
mlog.String("user", info.GetUser()),
mlog.String("host", info.GetHost()),
}
for k, v := range info.GetReserved() {
fields = append(fields, mlog.String(k, v))
}
return fields
}
func GetIdentifierFromContext(ctx context.Context) (int64, error) {
md, ok := metadata.FromIncomingContext(ctx)
if !ok {
return 0, merr.WrapErrParameterInvalidMsg("fail to get metadata from the context")
}
identifierContent, ok := md[util.IdentifierKey]
if !ok || len(identifierContent) < 1 {
return 0, merr.WrapErrParameterInvalidMsg("no identifier found in metadata")
}
identifier, err := strconv.ParseInt(identifierContent[0], 10, 64)
if err != nil {
return 0, merr.WrapErrParameterInvalidMsg("failed to parse identifier: %s, error: %s", identifierContent[0], err.Error())
}
return identifier, nil
}
func KeepActiveInterceptor(ctx context.Context, req any, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (resp interface{}, err error) {
// We shouldn't block the normal rpc. though this may be not very accurate enough.
// On the other hand, too many goroutines will also influence the rpc.
// Not sure which way is better, since actually we already make the `keepActive` asynchronous.
go func() {
identifier, err := GetIdentifierFromContext(ctx)
if err == nil && funcutil.CheckCtxValid(ctx) {
GetManager().KeepActive(identifier)
}
}()
return handler(ctx, req)
}