An-DJ commented on issue #8576: URL: https://github.com/apache/apisix/issues/8576#issuecomment-1367262292
@xionghanhan Basiclly that problem is caused by the `failfast` of gRPC (https://github.com/grpc/grpc-go/issues/2205). Apisix supports configuring nginx directly: https://github.com/apache/apisix/blob/master/docs/en/latest/customize-nginx-configuration.md So you can set `http2_max_requests 10000` or a larger number in `conf/config.yaml` to solve this like below: ``` nginx_config: http_server_configuration_snippet: | keepalive_requests 10000; ``` Or try to use `grpc.FailFast(false)` to switch off the failfast, refering https://github.com/grpc/grpc-go/issues/2205. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
