This commit is contained in:
zyyang 2021-02-01 13:21:30 +08:00
parent f2ba1f79b8
commit e396b608ae
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,6 @@ package com.taosdata.jdbc.utils;
import javax.management.*;
import java.lang.management.ManagementFactory;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
public class TaosInfo implements TaosInfoMBean {
@ -17,6 +16,7 @@ public class TaosInfo implements TaosInfoMBean {
MBeanServer server = ManagementFactory.getPlatformMBeanServer();
ObjectName name = new ObjectName("TaosInfoMBean:name=TaosInfo");
server.registerMBean(TaosInfo.getInstance(), name);
} catch (MalformedObjectNameException | InstanceAlreadyExistsException | MBeanRegistrationException | NotCompliantMBeanException e) {
e.printStackTrace();
}

View File

@ -17,7 +17,7 @@ public class TaosInfoMonitorTest {
List<Connection> connectionList = IntStream.range(0, 100).mapToObj(i -> {
try {
TimeUnit.SECONDS.sleep(1);
TimeUnit.MILLISECONDS.sleep(100);
return DriverManager.getConnection(url);
} catch (SQLException | InterruptedException e) {
e.printStackTrace();
@ -31,7 +31,7 @@ public class TaosInfoMonitorTest {
while (rs.next()) {
}
TimeUnit.MILLISECONDS.sleep(50);
TimeUnit.MILLISECONDS.sleep(100);
} catch (SQLException | InterruptedException e) {
e.printStackTrace();
}
@ -40,7 +40,7 @@ public class TaosInfoMonitorTest {
connectionList.stream().forEach(conn -> {
try {
conn.close();
TimeUnit.SECONDS.sleep(1);
TimeUnit.MILLISECONDS.sleep(100);
} catch (SQLException | InterruptedException e) {
e.printStackTrace();
}