maxbear1988
maxbear1988
this bytes bug will cause oom.https://github.com/tokio-rs/bytes/issues/559 @seanmonstar
@seanmonstar i keep sending request in h2 with 6k body with the same client. Memory keep growing.i use jemalloc to dump jeprof file,and find most memories are alloc by slab....
@seanmonstar thank you. i don't think it is related to SSL. It it performance well in http1.1;if i read the request body,it performance well in http2.0,too. Does hyper send a...
@seanmonstar chrome report ERR_HTTP2_PROTOCOL_ERROR ,not ERR_SSL_PROTOCOL_ERROR ,i wrote error last time
@seanmonstar yes,i try chrome,firefox,Microsoft Edge,all report ERR_HTTP2_PROTOCOL_ERROR
@seanmonstar if i read all request body, then response status code 413, it is ok. if i response status code 413 without reading request body, it is not ok.I think...
@seanmonstar i open hyper trace log,hyper send reset frame with error_code CANCEL. FramedWrite::buffer[0m[1m{[0mframe=Reset { stream_id: StreamId(647), error_code: CANCEL
@seanmonstar do you have a plan to fix this issue?