apiVersion: v1kind: Namespacemetadata:name: testlabels:istio-injection: enabledspec:finalizers:- kubernetes---apiVersion: apps/v1kind: Deploymentmetadata:name: clientnamespace: testlabels:app: clientspec:replicas: 10selector:matchLabels:app: clienttemplate:metadata:labels:app: clientspec:containers:- name: clientimage: ccr.ccs.tencentyun.com/zhulei/testclient:v1imagePullPolicy: Alwaysenv:- name: POD_NAMEvalueFrom:fieldRef:fieldPath: metadata.name- name: REGIONvalue: "guangzhou-zoneA"ports:- containerPort: 7000protocol: TCP---apiVersion: v1kind: Servicemetadata:name: clientnamespace: testlabels:app: clientspec:ports:- name: httpport: 7000protocol: TCPselector:app: clienttype: ClusterIP
Kevin, indicating that requests succeeded.
A high number of concurrent requests is as shown below:

Destination Rule of the user service to limit the maximum concurrency to 1:apiVersion: networking.istio.io/v1alpha3kind: DestinationRulemetadata:name: usernamespace: basespec:host: usertrafficPolicy:connectionPool:http:http1MaxPendingRequests: 1http2MaxRequests: 1maxRequestsPerConnection: 1exportTo:- '*'

Feedback