@mattklein123
refer to : https://www.envoyproxy.io/envoy/configuration/cluster_manager/cluster_runtime
cause the default size of ring hash is 1024, I want to set it larger. how to config it?
my configuations are as follows:
"cluster_manager": {
"clusters": [
{
"name": "service1",
"connect_timeout_ms": 250,
"type": "strict_dns",
"lb_type": "ring_hash",
"features": "http2",
"hosts": [
{
"url": "tcp://ip1:8888"
},
{
"url": "tcp://ip2:8888"
}
]
}
]
}