You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "CodingSinger (GitHub)" <gi...@apache.org> on 2020/03/16 15:22:41 UTC

[GitHub] [dubbo-go] CodingSinger commented on issue #401: Release note for 1.4

 [Support sign and auth for request](https://github.com/apache/dubbo-go/pull/323)
Dubbo鉴权认证是为了避免敏感接口被匿名用户调用而在SDK层面提供的额外保障。用户可以在接口级别进行定义是否允许匿名调用,并对调用方进行验签操作,对于验签不通过的消费端,禁止调用。总体实现基于AK/SK机制,并允许用户自定义获取AK/SK的源,在RPC层面保障安全性。
[Healthy instance first router](https://github.com/apache/dubbo-go/pull/389)
​ 在RPC调用中,我们希望尽可能地将请求命中到那些处理能力快、处于健康状态的实例,该路由的功能就是通过某种策略断定某个实例不健康,并将其排除在候选调用列表,优先调用那些健康的实例。这里的"健康"可以是我们自己定义的状态,默认实现即当错误比例到达某一个阈值时或者请求活跃数大于上限则认为其不健康,允许用户扩展健康检测策略。

[ Full content available at: https://github.com/apache/dubbo-go/pull/401 ]
This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org