sollhui commented on code in PR #63332:
URL: https://github.com/apache/doris/pull/63332#discussion_r3271112693


##########
fe/fe-core/src/main/java/org/apache/doris/httpv2/config/WebServerFactoryCustomizerConfig.java:
##########
@@ -50,6 +50,9 @@ public void customize(ConfigurableJettyWebServerFactory 
factory) {
                     if (httpFactory != null) {
                         HttpConfiguration httpConfig = 
httpFactory.getHttpConfiguration();
                         
httpConfig.setRequestHeaderSize(Config.jetty_server_max_http_header_size);
+                        // Apply the unconsumed request content read limit to 
every HTTP connector.
+                        httpConfig.setMaxUnconsumedRequestContentReads(
+                                
Config.jetty_server_max_unconsumed_request_content_reads);

Review Comment:
   The `etty_server_max_unconsumed_request_content_reads` setting is marked as 
mutable, but modifications made at runtime will not take effect.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to