【问题标题】:keep-alive configurations of spring-boot appspring-boot app的keep-alive配置
【发布时间】:2019-05-10 09:56:31
【问题描述】:

我正在尝试修复/调试在使用嵌入式 tomcat 的 spring-boot Web 应用程序中关闭连接过多的问题。出现问题是因为它关闭了应该保持活动状态的连接。

现在,我发现 tomcat 具有限制保持连接数量的配置(请参阅 https://tomcat.apache.org/tomcat-8.5-doc/config/http.html 中的 maxKeepAliveRequests),并且可能还有其他可能与该问题相关的配置。但我的问题是我看不到这些参数在哪里给出,或者如果使用默认值,我如何更改它们。

我的问题:我在哪里可以找到解释如何配置 spring-boot/embedded-tomcat keep-alive 参数的文档,这些参数是哪些?

【问题讨论】:

    标签: spring-boot keep-alive embedded-tomcat


    【解决方案1】:

    并非所有的 tomcat 属性都可以通过属性文件进行配置。 keep-alive 相关属性是这些属性之一,这意味着它们只能以编程方式进行配置。这是通过配置WebServerFactoryCustomizer bean 来完成的。您可以使用协议处理程序来设置KeepAlive 设置。下面是一个例子:

    @Bean
    public WebServerFactoryCustomizer<TomcatServletWebServerFactory> tomcatCustomizer() {
        return (tomcat) -> tomcat.addConnectorCustomizers((connector) -> {
            if (connector.getProtocolHandler() instanceof AbstractHttp11Protocol) {
                AbstractHttp11Protocol<?> protocolHandler = (AbstractHttp11Protocol<?>) connector
                        .getProtocolHandler();
                protocolHandler.setKeepAliveTimeout(80000);
                protocolHandler.setMaxKeepAliveRequests(500);
                protocolHandler.setUseKeepAliveResponseHeader(true);
            }
        });
    }
    

    要了解有关这些设置的更多信息,请阅读tomcat 9 configuration reference

    【讨论】:

    • 我没有这个问题了,我无法测试它,但这看起来是一个很好的解决方案。所以我会选择它。谢谢
    【解决方案2】:

    这些是 tomcat 服务器的配置属性:

    server.tomcat.accept-count=100 # Maximum queue length for incoming connection requests when all possible request processing threads are in use.
    server.tomcat.accesslog.buffered=true # Whether to buffer output such that it is flushed only periodically.
    server.tomcat.accesslog.directory=logs # Directory in which log files are created. Can be absolute or relative to the Tomcat base dir.
    server.tomcat.accesslog.enabled=false # Enable access log.
    server.tomcat.accesslog.file-date-format=.yyyy-MM-dd # Date format to place in the log file name.
    server.tomcat.accesslog.pattern=common # Format pattern for access logs.
    server.tomcat.accesslog.prefix=access_log # Log file name prefix.
    server.tomcat.accesslog.rename-on-rotate=false # Whether to defer inclusion of the date stamp in the file name until rotate time.
    server.tomcat.accesslog.request-attributes-enabled=false # Set request attributes for the IP address, Hostname, protocol, and port used for the request.
    server.tomcat.accesslog.rotate=true # Whether to enable access log rotation.
    server.tomcat.accesslog.suffix=.log # Log file name suffix.
    server.tomcat.additional-tld-skip-patterns= # Comma-separated list of additional patterns that match jars to ignore for TLD scanning.
    server.tomcat.background-processor-delay=10s # Delay between the invocation of backgroundProcess methods. If a duration suffix is not specified, seconds will be used.
    server.tomcat.basedir= # Tomcat base directory. If not specified, a temporary directory is used.
    server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
            192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
            169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
            127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
            172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
            172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
            172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3}\\
            0:0:0:0:0:0:0:1\\
            ::1 # Regular expression that matches proxies that are to be trusted.
    server.tomcat.max-connections=10000 # Maximum number of connections that the server accepts and processes at any given time.
    server.tomcat.max-http-post-size=2MB # Maximum size of the HTTP post content.
    server.tomcat.max-swallow-size=2MB # Maximum amount of request body to swallow.
    server.tomcat.max-threads=200 # Maximum amount of worker threads.
    server.tomcat.min-spare-threads=10 # Minimum amount of worker threads.
    server.tomcat.port-header=X-Forwarded-Port # Name of the HTTP header used to override the original port value.
    server.tomcat.protocol-header= # Header that holds the incoming protocol, usually named "X-Forwarded-Proto".
    server.tomcat.protocol-header-https-value=https # Value of the protocol header indicating whether the incoming request uses SSL.
    server.tomcat.redirect-context-root=true # Whether requests to the context root should be redirected by appending a / to the path.
    server.tomcat.remote-ip-header= # Name of the HTTP header from which the remote IP is extracted. For instance, `X-FORWARDED-FOR`.
    server.tomcat.resource.allow-caching=true # Whether static resource caching is permitted for this web application.
    server.tomcat.resource.cache-ttl= # Time-to-live of the static resource cache.
    server.tomcat.uri-encoding=UTF-8 # Character encoding to use to decode the URI.
    server.tomcat.use-relative-redirects= # Whether HTTP 1.1 and later location headers generated by a call to sendRedirect will use relative or absolute redirects.
    

    更多详情请查看here

    【讨论】:

    • 那么keep-alive没什么?
    • keep alive 相关似乎无关紧要,但是您可以深入研究该文档,也许您会发现一些有用的东西或思考如何以可以解决您问题的方式使用这些属性。
    • 你知道哪些源代码读取了这些参数并将它们传递给 tomcat 吗?所以我自己可以直接去看看
    • 这个答案没有回答问题中关于保持活动的问题,它只是所有属性的转储。
    • 我同意,这些属性只会让我们更加困惑。
    猜你喜欢
    • 2018-06-08
    • 2019-10-21
    • 2016-09-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-01-13
    • 1970-01-01
    • 2023-03-07
    相关资源
    最近更新 更多