'GRPC: Client ID or connection information?

Is there a way to get the connection information on RPC calls from server side? Or maybe something like unique client ID?



Solution 1:[1]

There is no connecton information which may help distinguish clients. One reason of this is proxies: different clients can have same IP and port (as I understand)

One possible solution is handshake protocol in app level. You can add rpc method "Connect" and send clientId as response from server. Afterthat you can attach custom headers (metadata) to your rpc calls.

Client side java code:

String clientId = getIdfromServer();
Metadata.Key<String> CLIENT_ID = Metadata.Key.of("client_id", ASCII_STRING_MARSHALLER);
Metadata fixedHeaders = new Metadata();
fixedHeaders.put(CLIENT_ID, clientId);
blockingStub = MetadataUtils.attachHeaders(blockingStub, fixedHeaders);

This C++ server side code shows how to handle such header on server:

::grpc::Status YourRPC(::grpc::ServerContext* context, const Your* request, YourResponse* response)
{
    const auto clientMetadata = context->client_metadata();
    auto it = clientMetadata.find("client_id");
    auto clientId = std::string(it->second.begin(), it->second.end());
}

I noticed that metadata key is case insensitive. Grpc converts keys to lowercase.

Solution 2:[2]

gRPC now provide peer information (https://github.com/grpc/grpc-go/issues/334)

import ( "google.golang.org/grpc/peer" )

func (s *server) Hello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
  //p includes connection information
  p, ok := peer.FromContext(ctx)
  ....
  ....
}

Solution 3:[3]

Yes , we can get the request information , connection information and etc. There are generally two types of information we can get from the client request on grpc server side.

  1. Method Information : We know that rpc call is simple method call . To get the method name (ie : which method will be invoked in grpc server when client will request?). below code will work.

      import (
       "google.golang.org/grpc"
      )
    
      func getMethodInfo(ctx context.Context) {
         methodName := grpc.Method(ctx)
         fmt.Println(methodName)
        }
     //outputex: /Abc
    

2.Peer Information:

    p, ok := peer.FromContext(ctx)

Hope this will work.

Solution 4:[4]

For gRPC streaming

We can get the connection information below through google.golang.org/grpc/peer

// protobuf
service Server {
  rpc Stream (stream GrpcStreamRequest) returns (stream GrpcStreamResponse) {}
}

func (ss *StreamServer) Stream(svr pb.Server_StreamServer) error {
    for {
        req, err := svr.Recv()
        if err != nil {
            fmt.Printf("Stream recv err %+v", err)
            return err
        }
        p, ok := peer.FromContext(svr.Context())
        if ok {
            fmt.Printf("Client info %+v", p)
        }
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Septem
Solution 3 atul anand
Solution 4 zangw