Dubbo Proxy

This documentation is for the Envoy v3 API.

As of Envoy v1.18 the v2 API has been removed and is no longer supported.

If you are upgrading from v2 API config you may wish to view the v2 API documentation:

This extension may be referenced by the qualified name envoy.filters.network.dubbo_proxy

Note

This extension is functional but has not had substantial production burn time, use only with this caveat.

This extension is not hardened and should only be used in deployments where both the downstream and upstream are trusted.

Tip

This extension extends and can be used with the following extension category:

Dubbo Proxy configuration overview.

extensions.filters.network.dubbo_proxy.v3.DubboProxy

[extensions.filters.network.dubbo_proxy.v3.DubboProxy proto]

{
  "stat_prefix": "...",
  "protocol_type": "...",
  "serialization_type": "...",
  "route_config": [],
  "dubbo_filters": []
}
stat_prefix

(string, REQUIRED) The human readable prefix to use when emitting statistics.

protocol_type

(extensions.filters.network.dubbo_proxy.v3.ProtocolType) Configure the protocol used.

serialization_type

(extensions.filters.network.dubbo_proxy.v3.SerializationType) Configure the serialization protocol used.

route_config

(repeated extensions.filters.network.dubbo_proxy.v3.RouteConfiguration) The route table for the connection manager is static and is specified in this property.

dubbo_filters

(repeated extensions.filters.network.dubbo_proxy.v3.DubboFilter) A list of individual Dubbo filters that make up the filter chain for requests made to the Dubbo proxy. Order matters as the filters are processed sequentially. For backwards compatibility, if no dubbo_filters are specified, a default Dubbo router filter (envoy.filters.dubbo.router) is used.

extensions.filters.network.dubbo_proxy.v3.DubboFilter

[extensions.filters.network.dubbo_proxy.v3.DubboFilter proto]

DubboFilter configures a Dubbo filter.

{
  "name": "...",
  "config": "{...}"
}
name

(string, REQUIRED) The name of the filter to instantiate. The name must match a supported filter.

config

(Any) Filter specific configuration which depends on the filter being instantiated. See the supported filters for further documentation.

Enum extensions.filters.network.dubbo_proxy.v3.ProtocolType

[extensions.filters.network.dubbo_proxy.v3.ProtocolType proto]

Dubbo Protocol types supported by Envoy.

Dubbo

(DEFAULT) ⁣the default protocol.

Enum extensions.filters.network.dubbo_proxy.v3.SerializationType

[extensions.filters.network.dubbo_proxy.v3.SerializationType proto]

Dubbo Serialization types supported by Envoy.

Hessian2

(DEFAULT) ⁣the default serialization protocol.