Group Merger

Group merger in dubbo

According to the group to invoke server and return the merge result 1, such as the menu service, the same interface, but there are a variety of implementations, using group distinction, consumers call each group and get the results, the merger can merge the resules, so that you can achieve aggregation Menu Item.

Related code can refer to dubbo project example

Configuration

Merge all groups

<dubbo:reference interface="com.xxx.MenuService" group="*" merger="true" />

Merge the specified group

<dubbo:reference interface="com.xxx.MenuService" group="aaa,bbb" merger="true" />

The specified method to merge the results, other unspecified methods, will only call one group

<dubbo:reference interface="com.xxx.MenuService" group="*">
    <dubbo:method name="getMenuItems" merger="true" />
</dubbo:reference>

The Specified a method does not merge the results, others merge the results

<dubbo:reference interface="com.xxx.MenuService" group="*" merger="true">
    <dubbo:method name="getMenuItems" merger="false" />
</dubbo:reference>

Specify the merge strategy, the default according to the type of return value automatically match, if the same type has two mergers, you need to specify the name of the merger2

<dubbo:reference interface="com.xxx.MenuService" group="*">
    <dubbo:method name="getMenuItems" merger="mymerge" />
</dubbo:reference>

Specify the merge method, it will call the return type’s method for merging, the merging method parameter type must be the return type

<dubbo:reference interface="com.xxx.MenuService" group="*">
    <dubbo:method name="getMenuItems" merger=".addAll" />
</dubbo:reference>

  1. since 2.1.0 began to support ↩︎

  2. See also:merger extensions ↩︎


Last modified December 13, 2022: Fix check (#1724) (4af50119ac0)