Git Product home page Git Product logo

Comments (6)

dosubot avatar dosubot commented on May 27, 2024 2

To address the issue where Consul watch does not trigger notifications when the server goes offline, unlike with etcd, you might need to implement additional logic in your Kratos project. The current implementation in Kratos for Consul watches, as seen in contrib/registry/consul/watcher.go, waits for an event or the context to be done without specifically handling server offline events.

Here's a conceptual approach to enhance the watch functionality to detect when the Consul server goes offline:

  1. Implement Health Checks: Create health checks for the Consul server. When the server is detected as offline, trigger an event on the w.event channel.

  2. Extend the Watch Mechanism: Modify the existing watch mechanism to periodically verify the connectivity to the Consul server. On detecting a disconnection, trigger an event on the w.event channel.

  3. Utilize Consul Events: Leverage Consul's event system to detect server offline events and integrate them with the Kratos service discovery watch mechanism.

For example, you could implement a health check that triggers an event when the server goes offline as follows:

func (w *watcher) monitorConsulServer() {
    ticker := time.NewTicker(10 * time.Second)
    defer ticker.Stop()

    for {
        select {
        case <-w.ctx.Done():
            return
        case <-ticker.C:
            if !isConsulServerAlive() {
                w.event <- struct{}{}
            }
        }
    }
}

func isConsulServerAlive() bool {
    // Logic to check if the Consul server is alive, e.g., a ping or health check
    return true // Placeholder return value
}

This function should be called as a goroutine, possibly during the watcher's initialization. Adjust this example based on your specific requirements and environment. For more details on the watcher implementation, refer to the Kratos repository, specifically the contrib/registry/consul/watcher.go file.

Details

Sources


About Dosu
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.

To continue the conversation, mention @dosu.

from kratos.

dosubot avatar dosubot commented on May 27, 2024

你好,@noovertime7!我是 Dosu,一个可以帮助你解决问题、回答问题以及成为贡献者的机器人。我在这里帮助你,同时等待人类维护者的回复。我会立即查看你的问题,并尽快给你一个完整的答案。

from kratos.

kratos-ci-bot avatar kratos-ci-bot commented on May 27, 2024

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Hello, @noovertime7! I'm Dosu, a bot that helps you solve problems, answer questions, and become a contributor. I'm here to help you while I wait to hear back from the human maintainers. I will review your question immediately and give you a complete answer as soon as possible.

from kratos.

noovertime7 avatar noovertime7 commented on May 27, 2024

image
只有服务端上线时会收到消息,离线不会

from kratos.

kratos-ci-bot avatar kratos-ci-bot commented on May 27, 2024

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


image
The message will only be received when the server is online, not when offline.

from kratos.

shenqidebaozi avatar shenqidebaozi commented on May 27, 2024

I'm not sure what you're referring to. I've been using this feature all along. Please provide a complete explanation or reproduce an example

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.