提交 e6005b1e 编写于 作者: Z zyyang

change

上级 a2e62fd3
...@@ -13,17 +13,17 @@ import java.util.concurrent.TimeUnit; ...@@ -13,17 +13,17 @@ import java.util.concurrent.TimeUnit;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
public class BatchInsertTest extends BaseTest { public class BatchInsertTest {
static Connection connection = null; private Connection connection;
static Statement statement = null;
static String dbName = "test"; private static String dbName = "test";
static String stbName = "meters"; private static String stbName = "meters";
static String host = "localhost"; private static String host = "127.0.0.1";
static int numOfTables = 30; private static int numOfTables = 30;
final static int numOfRecordsPerTable = 1000; private static int numOfRecordsPerTable = 1000;
static long ts = 1496732686000l; private static long ts = 1496732686000l;
final static String tablePrefix = "t"; private static String tablePrefix = "t";
@Before @Before
public void createDatabase() throws SQLException { public void createDatabase() throws SQLException {
...@@ -34,38 +34,33 @@ public class BatchInsertTest extends BaseTest { ...@@ -34,38 +34,33 @@ public class BatchInsertTest extends BaseTest {
} }
Properties properties = new Properties(); Properties properties = new Properties();
properties.setProperty(TSDBDriver.PROPERTY_KEY_HOST, host);
properties.setProperty(TSDBDriver.PROPERTY_KEY_CHARSET, "UTF-8"); properties.setProperty(TSDBDriver.PROPERTY_KEY_CHARSET, "UTF-8");
properties.setProperty(TSDBDriver.PROPERTY_KEY_LOCALE, "en_US.UTF-8"); properties.setProperty(TSDBDriver.PROPERTY_KEY_LOCALE, "en_US.UTF-8");
properties.setProperty(TSDBDriver.PROPERTY_KEY_TIME_ZONE, "UTC-8"); properties.setProperty(TSDBDriver.PROPERTY_KEY_TIME_ZONE, "UTC-8");
connection = DriverManager.getConnection("jdbc:TAOS://" + host + ":0/", properties); connection = DriverManager.getConnection("jdbc:TAOS://" + host + ":0/", properties);
statement = connection.createStatement(); Statement stmt = connection.createStatement();
statement.executeUpdate("drop database if exists " + dbName); stmt.execute("drop database if exists " + dbName);
statement.executeUpdate("create database if not exists " + dbName); stmt.execute("create database if not exists " + dbName);
statement.executeUpdate("use " + dbName); stmt.execute("use " + dbName);
String createTableSql = "create table " + stbName + "(ts timestamp, f1 int, f2 int, f3 int) tags(areaid int, loc binary(20))"; String createTableSql = "create table " + stbName + "(ts timestamp, f1 int, f2 int, f3 int) tags(areaid int, loc binary(20))";
statement.executeUpdate(createTableSql); stmt.execute(createTableSql);
for(int i = 0; i < numOfTables; i++) { for (int i = 0; i < numOfTables; i++) {
String loc = i % 2 == 0 ? "beijing" : "shanghai"; String loc = i % 2 == 0 ? "beijing" : "shanghai";
String createSubTalbesSql = "create table " + tablePrefix + i + " using " + stbName + " tags(" + i + ", '" + loc + "')"; String createSubTalbesSql = "create table " + tablePrefix + i + " using " + stbName + " tags(" + i + ", '" + loc + "')";
statement.executeUpdate(createSubTalbesSql); stmt.execute(createSubTalbesSql);
} }
stmt.close();
} }
@Test @Test
public void testBatchInsert() throws SQLException{ public void testBatchInsert() throws SQLException {
ExecutorService executorService = Executors.newFixedThreadPool(numOfTables); ExecutorService executorService = Executors.newFixedThreadPool(numOfTables);
for (int i = 0; i < numOfTables; i++) { for (int i = 0; i < numOfTables; i++) {
final int index = i; final int index = i;
executorService.execute(new Runnable() { executorService.execute(() -> {
@Override
public void run() {
try { try {
long startTime = System.currentTimeMillis(); long startTime = System.currentTimeMillis();
Statement statement = connection.createStatement(); // get statement Statement statement = connection.createStatement(); // get statement
...@@ -87,10 +82,8 @@ public class BatchInsertTest extends BaseTest { ...@@ -87,10 +82,8 @@ public class BatchInsertTest extends BaseTest {
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
}
}); });
} }
executorService.shutdown(); executorService.shutdown();
try { try {
...@@ -109,12 +102,14 @@ public class BatchInsertTest extends BaseTest { ...@@ -109,12 +102,14 @@ public class BatchInsertTest extends BaseTest {
rs.close(); rs.close();
} }
@After @After
public void close() throws Exception { public void close() {
statement.close(); try {
if (connection != null)
connection.close(); connection.close();
Thread.sleep(10); } catch (SQLException e) {
e.printStackTrace();
}
} }
} }
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册