supernovaer commented on issue #715: http2 / grpc问题 URL: https://github.com/apache/incubator-brpc/issues/715#issuecomment-512260187 之前调试没弄明白的几个问题,现在大概也明白了: 1. h2_client_connection_window_size、h2_client_stream_window_size这俩配置参数,只赋值给了_unack_local_settings,没有影响到remote_settings,所以设这两个gflag参数是没有用的 2. req帧虽然因为windows_size的问题,没有发出去,但是setting帧还是发出去了 3. 虽然setting帧顺利收发了,也解析出了grpc server的设置(已经调大过了),但是因为请求失败,连接断开了,Connection reset by peer;_remote_window_left应该是与socket绑定的,连接断开,下次发请求又建了新的socket,然后又用了H2Settings构造函数的默认size 
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
