Open
Description
For some reasons we do not limit the size of request body size.
And as a usual practise we enable RetryFilter on routes.
And here comes the problem.
When we enable the RetryFilter, the RetryFilter also enable request body caching.
Thus when the clients post a large request body, the server's memory is easilly overflowed.
However, currently, we cannot config the caching strategeis in RetryFilter/AdaptCachedBodyGlobalFilter/ServerWebExchangeUtils.
We cannot even override those classes.
This is a fatal problem and we are still figuring out a workaround...