fancy-FJ
fancy-FJ
我用的是TDengine-server-3.3.2.0-Linux-x64.tar.gz包里的TDengine-server-3.3.2.0\examples\JDBC\springbootdemo软件包 执行init方法时,java进程所持有句柄数以每秒1000多个句柄速度上涨 修改了以下文件 1、application.properties文件内容 # datasource config - JDBC-JNI spring.datasource.driver-class-name=com.taosdata.jdbc.TSDBDriver spring.datasource.url=jdbc:TAOS://192.168.110.32:6030/jala?timezone=UTC-8&charset=UTF-8&locale=en_US.UTF-8 spring.datasource.username=root spring.datasource.password=taosdata # datasource config - JDBC-RESTful #spring.datasource.driver-class-name=com.taosdata.jdbc.rs.RestfulDriver #spring.datasource.url=jdbc:TAOS-RS://192.168.110.32:6041/test #spring.datasource.username=root #spring.datasource.password=taosdata spring.datasource.druid.initial-size=5 spring.datasource.druid.min-idle=5 spring.datasource.druid.max-active=20 spring.datasource.druid.max-wait=30000 spring.datasource.druid.validation-query=select server_status(); spring.aop.auto=true spring.aop.proxy-target-class=true...