|
@@ -0,0 +1,378 @@
|
|
|
+package com.renlianiot.demo;
|
|
|
+
|
|
|
+import io.netty.handler.codec.mqtt.MqttMessageBuilders.PublishBuilder;
|
|
|
+
|
|
|
+import java.io.ObjectInputStream.GetField;
|
|
|
+import java.sql.DriverManager;
|
|
|
+import java.sql.ResultSet;
|
|
|
+import java.sql.SQLException;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.Random;
|
|
|
+import java.util.concurrent.CountDownLatch;
|
|
|
+
|
|
|
+import com.mysql.jdbc.Connection;
|
|
|
+import com.mysql.jdbc.PreparedStatement;
|
|
|
+import com.mysql.jdbc.Statement;
|
|
|
+
|
|
|
+public class MysqlTest {
|
|
|
+
|
|
|
+ static int startDeviceId = 0;
|
|
|
+ static String did2 = null;
|
|
|
+
|
|
|
+ public static String getDeviceId() {
|
|
|
+ startDeviceId++;
|
|
|
+
|
|
|
+ if (did2 != null && startDeviceId < 11) {
|
|
|
+ return did2;
|
|
|
+ }
|
|
|
+ startDeviceId = 0;
|
|
|
+
|
|
|
+ did2 = String.format("%020d", (int) (100000 + Math.random()
|
|
|
+ * (200000 - 100000 + 1)));
|
|
|
+ return did2;
|
|
|
+
|
|
|
+ // return String.format("%020d", (int) (1 + Math.random()
|
|
|
+ // * (100000 - 1 + 1)));
|
|
|
+ }
|
|
|
+
|
|
|
+ public static double getLong() {
|
|
|
+ double min = 0.0001;// 最小值
|
|
|
+ double max = 117;// 总和
|
|
|
+ int scl = 6;// 小数最大位数
|
|
|
+ int pow = (int) Math.pow(10, scl);// 指定小数位
|
|
|
+ double one = Math.floor((Math.random() * (max - min) + min) * pow)
|
|
|
+ / pow;
|
|
|
+ return one;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static double getLatit() {
|
|
|
+ double min = 0.0001;// 最小值
|
|
|
+ double max = 40;// 总和
|
|
|
+ int scl = 6;// 小数最大位数
|
|
|
+ int pow = (int) Math.pow(10, scl);// 指定小数位
|
|
|
+ double one = Math.floor((Math.random() * (max - min) + min) * pow)
|
|
|
+ / pow;
|
|
|
+ return one;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static int getSpeed() {
|
|
|
+ return (int) (1 + Math.random() * (32367 - 1 + 1));
|
|
|
+ }
|
|
|
+
|
|
|
+ public static int getDirection() {
|
|
|
+ return (int) (1 + Math.random() * (32367 - 1 + 1));
|
|
|
+ }
|
|
|
+
|
|
|
+ public static int getStatus() {
|
|
|
+ return (int) (1 + Math.random() * (127 - 1 + 1));
|
|
|
+ }
|
|
|
+
|
|
|
+ public static int getSatelliteCount() {
|
|
|
+ return (int) (1 + Math.random() * (127 - 1 + 1));
|
|
|
+ }
|
|
|
+
|
|
|
+ // 生成随机数字和字母,
|
|
|
+ public static String getStringRandom(int length) {
|
|
|
+
|
|
|
+ String val = "";
|
|
|
+ Random random = new Random();
|
|
|
+
|
|
|
+ // 参数length,表示生成几位随机数
|
|
|
+ for (int i = 0; i < length; i++) {
|
|
|
+
|
|
|
+ String charOrNum = random.nextInt(2) % 2 == 0 ? "char" : "num";
|
|
|
+ // 输出字母还是数字
|
|
|
+ if ("char".equalsIgnoreCase(charOrNum)) {
|
|
|
+ // 输出是大写字母还是小写字母
|
|
|
+ int temp = random.nextInt(2) % 2 == 0 ? 65 : 97;
|
|
|
+ val += (char) (random.nextInt(26) + temp);
|
|
|
+ } else if ("num".equalsIgnoreCase(charOrNum)) {
|
|
|
+ val += String.valueOf(random.nextInt(10));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return val;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static String getLBS() {
|
|
|
+ return getStringRandom(8);
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void execTransSql0(Connection connTrans) {
|
|
|
+ PreparedStatement psTrans = null;
|
|
|
+ // 加载驱动类
|
|
|
+ try {
|
|
|
+ connTrans.setAutoCommit(false); // JDBC中默认是true,我们改成false,然后在后面手动提交
|
|
|
+
|
|
|
+ // 拼成一条sql语句发送
|
|
|
+ String sql = String
|
|
|
+ .format("insert into gps_location_myisam(`DeviceId`,`DeviceTime`,"
|
|
|
+ + "`Longitude`,`Latitude`,`Speed`,`Direction`,`Status`,`SatelliteCount`,`LBS`)values");
|
|
|
+
|
|
|
+ StringBuffer sb = new StringBuffer();
|
|
|
+ sb.append(sql);
|
|
|
+ for (int i = 0; i < 3000; i++) {
|
|
|
+ sb.append(String.format("('%s',%d,%f,%f,%d,%d,%d,%d,'%s'),",
|
|
|
+ getDeviceId(), System.currentTimeMillis() / 1000,
|
|
|
+ getLong(), getLatit(), getSpeed(), getDirection(),
|
|
|
+ getStatus(), getSatelliteCount(), getLBS()));
|
|
|
+
|
|
|
+ // System.out.println("build time: "+(System.currentTimeMillis()
|
|
|
+ // - startTime) + "ms");
|
|
|
+ // startTime = System.currentTimeMillis(); //获取开始时间
|
|
|
+
|
|
|
+ }
|
|
|
+ sql += sb.toString();
|
|
|
+ // System.out.println(sql);
|
|
|
+ psTrans = (PreparedStatement) connTrans.prepareStatement(sb
|
|
|
+ .toString().substring(0, sb.length() - 1));
|
|
|
+ psTrans.execute();
|
|
|
+ System.out.println("exec sql OK");
|
|
|
+ // Thread.sleep(5000000);
|
|
|
+ connTrans.commit();// 提交事务
|
|
|
+ } catch (Exception e) {
|
|
|
+ try {
|
|
|
+ connTrans.rollback();
|
|
|
+ } catch (SQLException e1) {
|
|
|
+ // TODO Auto-generated catch block
|
|
|
+ e1.printStackTrace();
|
|
|
+ }// 某一条数据添加失败时,回滚
|
|
|
+ e.printStackTrace();
|
|
|
+ } finally {
|
|
|
+ try {
|
|
|
+ if (psTrans != null) {
|
|
|
+ psTrans.close();
|
|
|
+ }
|
|
|
+ } catch (SQLException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void execTransSql() {
|
|
|
+ Connection connTrans = null;
|
|
|
+ try {
|
|
|
+
|
|
|
+ Class.forName("com.mysql.jdbc.Driver");
|
|
|
+
|
|
|
+ connTrans = (Connection) DriverManager
|
|
|
+ .getConnection(
|
|
|
+ "jdbc:mysql://192.168.1.187:3306/gps?characterEncoding=UTF-8",
|
|
|
+ "root", "jrtk.net");
|
|
|
+ for (int j = 0; j < 20; j++) {
|
|
|
+ execTransSql0(connTrans);
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ } finally {
|
|
|
+ try {
|
|
|
+ if (connTrans != null) {
|
|
|
+ connTrans.close();
|
|
|
+ }
|
|
|
+ } catch (SQLException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void execSql(int id) {
|
|
|
+ try {
|
|
|
+ // System.out.println(getLong());
|
|
|
+ // if (true){
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ // 1.加载数据访问驱动
|
|
|
+ Class.forName("com.mysql.jdbc.Driver");
|
|
|
+ // 2.连接到数据"库"上去
|
|
|
+ // long startTime = System.currentTimeMillis(); //获取开始时间
|
|
|
+ Connection conn = (Connection) DriverManager
|
|
|
+ .getConnection(
|
|
|
+ "jdbc:mysql://192.168.1.187:3306/gps?characterEncoding=UTF-8",
|
|
|
+ "root", "jrtk.net");
|
|
|
+
|
|
|
+ // Connection conn = (Connection) DriverManager
|
|
|
+ // .getConnection(
|
|
|
+ // "jdbc:mysql://rm-hp3gk936r4d971vi19o.mysql.huhehaote.rds.aliyuncs.com:3306/dev_fd_gps?characterEncoding=UTF-8",
|
|
|
+ // "jyzl", "A295c237ff2f407c");
|
|
|
+
|
|
|
+ // System.out.println("connect time: "+(System.currentTimeMillis() -
|
|
|
+ // startTime) + "ms");
|
|
|
+ // 3.构建SQL命令
|
|
|
+ // startTime = System.currentTimeMillis(); //获取开始时间
|
|
|
+ Statement state = (Statement) conn.createStatement();
|
|
|
+
|
|
|
+ // 一条条发送
|
|
|
+ // for (int i = 0; i < 1000; i++) {
|
|
|
+ // String sql = String
|
|
|
+ // .format("insert into gps_location_innodb(`DeviceId`,`DeviceTime`,"
|
|
|
+ // +
|
|
|
+ // "`Longitude`,`Latitude`,`Speed`,`Direction`,`Status`,`SatelliteCount`,`LBS`) "
|
|
|
+ // + " values('%s',%d,%f,%f,%d,%d,%d,%d,'%s')",
|
|
|
+ // getDeviceId(),
|
|
|
+ // System.currentTimeMillis() / 1000, getLong(),
|
|
|
+ // getLatit(), getSpeed(), getDirection(),
|
|
|
+ // getStatus(), getSatelliteCount(), getLBS());
|
|
|
+ // // System.out.println(sql);
|
|
|
+ // // System.out.println("build time: "+(System.currentTimeMillis()
|
|
|
+ // // - startTime) + "ms");
|
|
|
+ // // startTime = System.currentTimeMillis(); //获取开始时间
|
|
|
+ // state.executeUpdate(sql);
|
|
|
+ // }
|
|
|
+
|
|
|
+ String tableName = "gps_location_tokudb";
|
|
|
+ if (id % 2 == 0) {
|
|
|
+ // tableName = "gps_location_myisam_mutldisk2";
|
|
|
+ }
|
|
|
+ // 拼成一条sql语句发送 tokudb innodb myisam
|
|
|
+ String sql = String
|
|
|
+ .format("insert into "
|
|
|
+ + tableName
|
|
|
+ + "(`DeviceId`,`DeviceTime`,"
|
|
|
+ + "`Longitude`,`Latitude`,`Speed`,`Direction`,`Status`,`SatelliteCount`,`LBS`)values");
|
|
|
+ int times = execTimesPerThread;
|
|
|
+ for (int j = 0; j < times; j++) {
|
|
|
+
|
|
|
+ StringBuffer sb = new StringBuffer();
|
|
|
+ sb.append(sql);
|
|
|
+
|
|
|
+ int cout = oneSqlInsertValuesLen;
|
|
|
+ for (int i = 0; i < cout; i++) {
|
|
|
+ sb.append(String.format(
|
|
|
+ "('%s',%d,%f,%f,%d,%d,%d,%d,'%s'),", getDeviceId(),
|
|
|
+ System.currentTimeMillis() / 1000, getLong(),
|
|
|
+ getLatit(), getSpeed(), getDirection(),
|
|
|
+ getStatus(), getSatelliteCount(), getLBS()));
|
|
|
+
|
|
|
+ // System.out.println("build time: "+(System.currentTimeMillis()
|
|
|
+ // - startTime) + "ms");
|
|
|
+ // startTime = System.currentTimeMillis(); //获取开始时间
|
|
|
+
|
|
|
+ // sb.append("('00000000000222050184',1552226307,87.622294,36.484341,5122,12215,26,32,'e5m2LI0Y'),");
|
|
|
+ }
|
|
|
+ // System.out.println(sb.toString());
|
|
|
+
|
|
|
+ long startTime = System.currentTimeMillis();
|
|
|
+ state.execute(sb.toString().substring(0, sb.length() - 1));
|
|
|
+ System.out.println(cout + " insert OK "
|
|
|
+ + (System.currentTimeMillis() - startTime) + "ms");
|
|
|
+ }
|
|
|
+
|
|
|
+ // System.out.println("exec time: "+(System.currentTimeMillis() -
|
|
|
+ // startTime) + "ms");
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void execQueryTest0(Connection conn) {
|
|
|
+ try {
|
|
|
+ String did = getDeviceId();
|
|
|
+ // String sql = "select * from gps_location_tokudb where deviceid='"
|
|
|
+ // + did + "' limit 4000";
|
|
|
+ String sql = "select DeviceTime,Longitude,Latitude from gps_location_tokudb where deviceid='"
|
|
|
+ + did + "' limit " + queryLimit;
|
|
|
+ // System.out.println(sql);
|
|
|
+ PreparedStatement pst = null;
|
|
|
+ long startTime = System.currentTimeMillis();
|
|
|
+ pst = (PreparedStatement) conn.prepareStatement(sql);
|
|
|
+
|
|
|
+ ResultSet rs = pst.executeQuery();
|
|
|
+ int count = 0;
|
|
|
+ while (rs.next()) {
|
|
|
+ // 将查询出的内容添加到list中,其中userName为数据库中的字段名称
|
|
|
+ count++;
|
|
|
+ }
|
|
|
+
|
|
|
+ System.out.println("query " + did + " count " + count + " "
|
|
|
+ + (System.currentTimeMillis() - startTime) + "ms");
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static void execQueryTest() {
|
|
|
+ try {
|
|
|
+ Class.forName("com.mysql.jdbc.Driver");
|
|
|
+ Connection conn = (Connection) DriverManager
|
|
|
+ .getConnection(
|
|
|
+ "jdbc:mysql://192.168.1.187:3306/gps?characterEncoding=UTF-8",
|
|
|
+ "root", "jrtk.net");
|
|
|
+
|
|
|
+ for (int i = 0; i < execTimesPerThread; i++) {
|
|
|
+ execQueryTest0(conn);
|
|
|
+ }
|
|
|
+
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ static String flag = "query";
|
|
|
+
|
|
|
+ static int threadNumber = 50;
|
|
|
+ static int execTimesPerThread = 10;
|
|
|
+
|
|
|
+ static int queryLimit = 4000;
|
|
|
+ static int oneSqlInsertValuesLen = 2000;
|
|
|
+ public static void main(String[] args) {
|
|
|
+ try {
|
|
|
+ if (args.length > 0) {
|
|
|
+ try {
|
|
|
+ flag = args[0];// insert query
|
|
|
+ threadNumber = Integer.parseInt(args[1]);
|
|
|
+ execTimesPerThread = Integer.parseInt(args[2]);
|
|
|
+ oneSqlInsertValuesLen = Integer.parseInt(args[3]);
|
|
|
+ if (flag.equals("query")) {
|
|
|
+ queryLimit = Integer.parseInt(args[3]);
|
|
|
+ } else {
|
|
|
+ oneSqlInsertValuesLen = Integer.parseInt(args[3]);
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ long startTime = System.currentTimeMillis(); // 获取开始时间
|
|
|
+
|
|
|
+ System.out.println("start threadNumber " + threadNumber + " "
|
|
|
+ + flag + " thread");
|
|
|
+ final CountDownLatch countDownLatch = new CountDownLatch(
|
|
|
+ threadNumber);
|
|
|
+ for (int i = 0; i < threadNumber; i++) {
|
|
|
+ final int threadID = i;
|
|
|
+ new Thread() {
|
|
|
+ public void run() {
|
|
|
+ if (flag.equals("insert")) {
|
|
|
+ execSql(threadID);
|
|
|
+ } else if (flag.equals("query")) {
|
|
|
+ execQueryTest();
|
|
|
+ } else {
|
|
|
+ System.out
|
|
|
+ .println("args error;eg: insert|query threadNumber execTimesPerThread oneSqlInsertValuesLen|queryLimit");
|
|
|
+ System.exit(0);
|
|
|
+ }
|
|
|
+
|
|
|
+ // execTransSql();
|
|
|
+ System.out.println(String.format(
|
|
|
+ "threadID:[%s] finished!!", threadID));
|
|
|
+ countDownLatch.countDown();
|
|
|
+ }
|
|
|
+ }.start();
|
|
|
+ }
|
|
|
+ countDownLatch.await();
|
|
|
+ oneSqlInsertValuesLen = flag.equals("query") ? 1
|
|
|
+ : oneSqlInsertValuesLen;
|
|
|
+ System.out
|
|
|
+ .println("time: "
|
|
|
+ + (System.currentTimeMillis() - startTime)
|
|
|
+ + "ms threadNumber:"
|
|
|
+ + threadNumber
|
|
|
+ + " total:"
|
|
|
+ + (threadNumber * execTimesPerThread * oneSqlInsertValuesLen) + " "
|
|
|
+ + (flag.equals("query") ? "queryLimit:" + queryLimit : " oneSqlInsertValuesLen:" + oneSqlInsertValuesLen));
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|