istio 熔断
作者:互联网
熔断,是创建弹性微服务应用程序的重要模式。熔断能够使您的应用程序具备应对来自故障、潜在峰值和其他未知网络因素影响的能力。
参考:https://istio.io/latest/zh/docs/tasks/traffic-management/circuit-breaking/
1)在目标规则中配置熔断器
apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: httpbin spec: host: httpbin trafficPolicy: connectionPool: tcp: maxConnections: 1 http: http1MaxPendingRequests: 1 maxRequestsPerConnection: 1 outlierDetection: consecutive5xxErrors: 1 interval: 1s baseEjectionTime: 3m maxEjectionPercent: 100
2)通过客户端程序测试熔断策略
创建客户端程序以发送流量到 httpbin
服务。这是一个名为 Fortio 的负载测试客户端,它可以控制连接数、并发数及发送 HTTP 请求的延迟。通过 Fortio 能够有效的触发前面在 DestinationRule
中设置的熔断策略。
2.1)发送并发数为 2 的连接(-c 2
),请求 20 次(-n 20
):
kubectl exec "$FORTIO_POD" -c fortio -- /usr/bin/fortio load -c 2 -qps 0 -n 20 -loglevel Warning http://httpbin:8000/get
2.2)将并发连接数提高到 3 个:
kubectl exec "$FORTIO_POD" -c fortio -- /usr/bin/fortio load -c 3 -qps 0 -n 30 -loglevel Warning http://httpbin:8000/get
2.3)查询 istio-proxy
状态以了解更多熔断详情:
kubectl exec "$FORTIO_POD" -c istio-proxy -- pilot-agent request GET stats | grep httpbin | grep pending
upstream_rq_pending_overflow 为熔断的调用数
标签:fortio,20,FORTIO,istio,熔断,httpbin 来源: https://www.cnblogs.com/bill2014/p/16077486.html