solisamicus

Results 5 comments of solisamicus

需求描述: ![Remove all dependencies on the config-client-server package](https://github.com/user-attachments/assets/5bb141f4-b654-401a-a829-f29fb58ec8e2) **解决方案:引入接口层以解耦相关包的依赖** 1. 在 clientapi 包中定义相关接口 ```go package clientapi import ... // ConnectionInterface:将 Connection 的功能抽象成接口 type ConnectionInterface interface { CallUnary(ctx context.Context, reqs []interface{},...

@xuetao @aiqi

@xuetao 支持 pixiu 对 nacos 关于大模型进行服务发现,pixiu 跟 higress 行为保持一致。

目标:为 dubbo-go 添加 HTTP 健康检查 API,支持 K8S 的 readiness 和 liveness probe。 前置了解: K8S通过两种探针与健康检查API交互: 1. Liveness Probe(存活探针) - 目的:检查容器是否还活着 - 失败后果:K8S会重启容器 - 调用端点:GET http://pod-ip:8080/health/live 2. Readiness Probe(就绪探针) - 目的:检查容器是否准备好接收流量 -...