Sticky connections are used for stateful services, as much as possible so that clients always make calls to the same provider, unless the provider hangs up and connects to the other one.
Sticky connections will automatically open Lazy Connection to reduce the number of long connections.
<dubbo:reference id="xxxService" interface="com.xxx.XxxService" sticky="true" />
Dubbo supports method-level sticky connection, and if you want more granular control, you can also configure as follow.
<dubbo:reference id="xxxService" interface="com.xxx.XxxService">
<dubbo:mothod name="sayHello" sticky="true" />
</dubbo:reference>
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.