Giter Site home page Giter Site logo

[consul Registry]: When grpc enters idle mode, “last connection error” occurs on the client and cannot be recovered about kratos HOT 1 OPEN

duc-cnzj avatar duc-cnzj commented on May 28, 2024
[consul Registry]: When grpc enters idle mode, “last connection error” occurs on the client and cannot be recovered

from kratos.

Comments (1)

dosubot avatar dosubot commented on May 28, 2024 2

🤖

The issue you're experiencing might be due to the gRPC connection going into the IDLE state and not being able to recover when the service instance changes. This could be a problem with the gRPC resolver not being able to update the connection when the service instance changes.

To resolve this issue, you can try to add a custom gRPC resolver that can handle the service instance changes more effectively. Here's an example of how you can do this:

package main

import (
	"github.com/go-kratos/kratos/v2/transport/grpc/resolver"
	"google.golang.org/grpc/resolver"
)

type customBuilder struct {
	discovery registry.Discovery
}

func (b *customBuilder) Build(target resolver.Target, cc resolver.ClientConn, opts resolver.BuildOptions) (resolver.Resolver, error) {
	r := &customResolver{
		target: target,
		cc:     cc,
		d:      b.discovery,
	}
	r.start()
	return r, nil
}

func (b *customBuilder) Scheme() string {
	return "custom"
}

type customResolver struct {
	target resolver.Target
	cc     resolver.ClientConn
	d      registry.Discovery
}

func (r *customResolver) start() {
	// Implement your logic to watch the service instance changes and update the gRPC connection accordingly.
}

func (r *customResolver) ResolveNow(resolver.ResolveNowOptions) {}

func (r *customResolver) Close() {}

func main() {
	// Register your custom resolver builder.
	resolver.Register(&customBuilder{discovery: yourDiscovery})

	// Use your custom resolver when dialing.
	conn, err := grpc.Dial("custom:///your-service-name", grpc.WithInsecure())
}

In the start method of the customResolver, you should implement your logic to watch the service instance changes from the registry.Discovery and call resolver.ClientConn.UpdateState to update the gRPC connection accordingly.

Please replace yourDiscovery and your-service-name with your actual discovery instance and service name.

This way, when the service instance changes, your custom resolver can update the gRPC connection to point to the latest service instance, which should resolve the issue you're experiencing.

You can refer to the transport/grpc/client.go for more details on how gRPC connections are handled in Kratos.

As for how Kratos handles gRPC connections entering idle mode, I wasn't able to find specific information within the repository. It's possible that this behavior is managed by the underlying gRPC library rather than Kratos itself. If you have more specific questions or need further clarification, please let me know!

Sources


This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.