Service Splitter
The service-splitter
config entry kind (ServiceSplitter
on Kubernetes) controls how to split incoming Connect requests across different subsets of a single service (like during staged canary rollouts), or perhaps across different services (like during a v2 rewrite or other type of codebase migration).
If no splitter config is defined for a service it is assumed 100% of traffic flows to a service with the same name and discovery continues on to the resolution stage.
Service splitter config entries are a component of L7 Traffic Management.
Service splitter config entries are restricted to only services that define their protocol as http-based via a corresponding config entry or globally via proxy-defaults .
Any split destination that specifies a different
Service
field and omits theServiceSubset
field is eligible for further splitting should a splitter be configured for that other service, otherwise resolution proceeds according to any configured .
Split traffic between two subsets of the same service:
HCL
- HCL
- Kubernetes YAML
- JSON
apiVersion: consul.hashicorp.com/v1alpha1
kind: ServiceSplitter
metadata:
name: web
spec:
splits:
- weight: 90
- weight: 10
serviceSubset: v2
Two different services
Split traffic between two services:
- HCL
- Kubernetes YAML
- JSON
Kind = "service-splitter"
Name = "web"
Splits = [
Weight = 50
# will default to service with same name as config entry ("web")
},
{
Weight = 10
Service = "web-rewrite"
},
]
{
"Kind": "service-splitter",
"Splits": [
{
"Weight": 50
},
{
"Weight": 50,
}
]
}
- Must be set to
service-splitter
Name
(string: <required>)
- Set to the name of the service being configured.(string: "default")
Enterprise
- Specifies the namespace the config entry will apply to.
Meta
(map<string|string>: nil)
- Specifies arbitrary KV metadata pairs. Added in Consul 1.8.4.-
(float32: 0)
- A value between 0 and 100 reflecting what portion of traffic should be directed to this split. The smallest representable eight is 1/10000 or .01%Service
(string: "")
- The service to resolve instead of the default.(string: "")
- A named subset of the given service to resolve instead of one defined as that service’sDefaultSubset
. If empty the default subset is used.Namespace
(string: "")
Enterprise
- The namespace to resolve the service from instead of the current namespace. If empty the current namespace is assumed.
Configuration entries may be protected by .
Reading a service-splitter
config entry requires service:read
on the resource.
Creating, updating, or deleting a service-splitter
config entry requires service:write
on the resource and on any other service referenced by name in these fields: