How do you limit the number of active requests to a service?
Trap 1: Gateway
Gateway handles ingress ports.
Trap 2: VirtualService
VirtualService doesn't set connection limits.
Trap 3: ServiceEntry
ServiceEntry is for discovery.
- A
Gateway
Why wrong: Gateway handles ingress ports.
- B
VirtualService
Why wrong: VirtualService doesn't set connection limits.
- C
DestinationRule
DestinationRule defines connection pool settings.
- D
ServiceEntry
Why wrong: ServiceEntry is for discovery.