druid 设置read timeout
时间: 2023-08-15 22:06:44 浏览: 427
命令timeout
5星 · 资源好评率100%
在 Druid 中,可以通过在配置文件 `common.runtime.properties` 中增加以下配置来设置连接的读取超时时间:
```
# Sets the timeout for reading from the socket
druid.server.http.readTimeout=PT10S
```
其中,`PT10S` 表示 10 秒。你可以根据需要设置其他的超时时间。如果想要设置全局的超时时间,可以在 `druid.properties` 文件中设置:
```
# Sets the timeout for reading from the socket
druid.http.readTimeout=PT10S
```
这个配置会影响所有的 HTTP 连接。需要注意的是,Druid 的连接超时时间设置需要根据实际情况进行调整,否则可能会影响查询性能。
阅读全文