|
@@ -52,15 +52,17 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
private IThingsPointDao thingsPointDao;
|
|
private IThingsPointDao thingsPointDao;
|
|
|
|
|
|
|
|
|
|
|
|
+ List<TsPoint> allTsPoint = null;
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public void run(ApplicationArguments args) throws Exception {
|
|
public void run(ApplicationArguments args) throws Exception {
|
|
|
|
|
|
//牛首山风电场 taos库创建,taos库保存数据为90天
|
|
//牛首山风电场 taos库创建,taos库保存数据为90天
|
|
-// initDatabase("HNJ_FDC", 90);
|
|
|
|
|
|
+ //initDatabase("FS_FDC", 90);
|
|
// //牛首山风电场 ai测点表创建,超级表名为windturbineai,风机型号为UP82
|
|
// //牛首山风电场 ai测点表创建,超级表名为windturbineai,风机型号为UP82
|
|
-// initTableAI("HNJ_FDC", "windturbineai", "MY-1500");
|
|
|
|
|
|
+ initTableAI("FS_FDC", "pointai", "UP82-1500");
|
|
// //牛首山风电场 di测点表创建,超级表名为windturbinedi,风机型号为UP82
|
|
// //牛首山风电场 di测点表创建,超级表名为windturbinedi,风机型号为UP82
|
|
-// initTableDI("HNJ_FDC", "windturbinedi", "MY-1500");
|
|
|
|
|
|
+ //initTableDI("FS_FDC", "pointdi", "UP82-1500");
|
|
|
|
|
|
// Random r = new Random();
|
|
// Random r = new Random();
|
|
// Long ts = new Date().getTime();
|
|
// Long ts = new Date().getTime();
|
|
@@ -161,7 +163,7 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
final Statement statement = connection.createStatement();
|
|
final Statement statement = connection.createStatement();
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
|
|
|
|
- String createSTableSql = "create database " + stationName + " replica 1 quorum 1 days 1 keep " + keepDay + " cache 16 blocks 6" +
|
|
|
|
|
|
+ String createSTableSql = "create database " + dbName + " replica 1 quorum 1 days 1 keep " + keepDay + " cache 16 blocks 6" +
|
|
" minrows 100 maxrows 4096 wal 1 fsync 3000 comp 2 cachelast 0 precision 'ms' update 1";
|
|
" minrows 100 maxrows 4096 wal 1 fsync 3000 comp 2 cachelast 0 precision 'ms' update 1";
|
|
statement.executeUpdate(createSTableSql);
|
|
statement.executeUpdate(createSTableSql);
|
|
|
|
|
|
@@ -180,9 +182,9 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
private void initTableAI(String stationId, String stableName, String modelId) throws ClassNotFoundException {
|
|
private void initTableAI(String stationId, String stableName, String modelId) throws ClassNotFoundException {
|
|
log.error("开始执行创建taos库");
|
|
log.error("开始执行创建taos库");
|
|
try {
|
|
try {
|
|
- final List<Windturbine> windturbines = windturbineService.queryWindturbine(stationId, modelId);
|
|
|
|
|
|
+ //final List<Windturbine> windturbines = windturbineService.queryWindturbine(stationId, modelId);
|
|
|
|
|
|
- log.error("查询风机完毕" + windturbines.size());
|
|
|
|
|
|
+ //log.error("查询风机完毕" + windturbines.size());
|
|
// Class.forName("com.taosdata.jdbc.TSDBDriver");
|
|
// Class.forName("com.taosdata.jdbc.TSDBDriver");
|
|
// String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
|
|
// String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
|
|
|
|
|
|
@@ -200,17 +202,18 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
final Statement statement = connection.createStatement();
|
|
final Statement statement = connection.createStatement();
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
|
|
|
|
- String createSTableSql = "create stable if not exists " + stationId + "." + stableName + "(ts timestamp,value double)tags(point binary(50));";
|
|
|
|
|
|
+ String createSTableSql = "create stable if not exists " + dbName + "." + stableName + "(ts timestamp,value double) " +
|
|
|
|
+ "tags(point binary(50),description nchar(100),station binary(20),turbine binary(20));";
|
|
statement.executeUpdate(createSTableSql);
|
|
statement.executeUpdate(createSTableSql);
|
|
|
|
+ if (allTsPoint == null)
|
|
|
|
+ allTsPoint = thingsPointDao.getAllTsPoint();
|
|
|
|
|
|
-
|
|
|
|
- final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s -> s.getTsDataType() == TsDataType.DOUBLE).collect(Collectors.toList());
|
|
|
|
-
|
|
|
|
|
|
+ List<TsPoint> doublePointList = allTsPoint.stream().filter(s -> s.getTsDataType() == TsDataType.DOUBLE).collect(Collectors.toList());
|
|
Date st = new Date();
|
|
Date st = new Date();
|
|
- for (Windturbine data :
|
|
|
|
|
|
+/* for (Windturbine data :
|
|
windturbines) {
|
|
windturbines) {
|
|
|
|
|
|
- final List<TsPoint> collect = allTsPoint.stream().filter(s -> s.getThingId().equals(data.getCode())).collect(Collectors.toList());
|
|
|
|
|
|
+ List<TsPoint> collect = doublePointList.stream().filter(s -> s.getThingId().equals(data.getId())).collect(Collectors.toList());
|
|
|
|
|
|
for (TsPoint point :
|
|
for (TsPoint point :
|
|
collect) {
|
|
collect) {
|
|
@@ -218,6 +221,12 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
|
|
|
|
statement.executeUpdate(createTableSql);
|
|
statement.executeUpdate(createTableSql);
|
|
}
|
|
}
|
|
|
|
+ }*/
|
|
|
|
+ for (TsPoint point : doublePointList) {
|
|
|
|
+ String createTableSql = "create table if not exists " + dbName + "." + point.getId() + " using " + dbName + "." + stableName +
|
|
|
|
+ " tags('" + point.getId() +"','','',''" + ");";
|
|
|
|
+
|
|
|
|
+ statement.executeUpdate(createTableSql);
|
|
}
|
|
}
|
|
Date et = new Date();
|
|
Date et = new Date();
|
|
log.error("数据库创建完毕,耗时" + (et.getTime() - st.getTime()));
|
|
log.error("数据库创建完毕,耗时" + (et.getTime() - st.getTime()));
|
|
@@ -234,9 +243,9 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
private void initTableDI(String stationId, String stableName, String modelId) throws ClassNotFoundException {
|
|
private void initTableDI(String stationId, String stableName, String modelId) throws ClassNotFoundException {
|
|
log.error("开始执行创建taos库");
|
|
log.error("开始执行创建taos库");
|
|
try {
|
|
try {
|
|
- final List<Windturbine> windturbines = windturbineService.queryWindturbine(stationId, modelId);
|
|
|
|
|
|
+ //final List<Windturbine> windturbines = windturbineService.queryWindturbine(stationId, modelId);
|
|
|
|
|
|
- log.error("查询风机完毕" + windturbines.size());
|
|
|
|
|
|
+ //log.error("查询风机完毕" + windturbines.size());
|
|
// Class.forName("com.taosdata.jdbc.TSDBDriver");
|
|
// Class.forName("com.taosdata.jdbc.TSDBDriver");
|
|
// String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
|
|
// String jdbcUrl = "jdbc:TAOS://" + serverIp + ":" + serverPort + "/" + dbName + "?user=" + userName + "&password=" + password;
|
|
|
|
|
|
@@ -254,17 +263,20 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
final Statement statement = connection.createStatement();
|
|
final Statement statement = connection.createStatement();
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
//statement.executeUpdate(createDatabaseSql);
|
|
|
|
|
|
- String createSTableSql = "create stable if not exists " + stationId + "." + stableName + "(ts timestamp,value bool)tags(point binary(50));";
|
|
|
|
|
|
+ String createSTableSql = "create stable if not exists " + dbName + "." + stableName + "(ts timestamp,value bool)" +
|
|
|
|
+ "tags(point binary(50),description nchar(100),station binary(20),turbine binary(20));";
|
|
statement.executeUpdate(createSTableSql);
|
|
statement.executeUpdate(createSTableSql);
|
|
|
|
|
|
|
|
|
|
- final List<TsPoint> allTsPoint = thingsPointDao.getAllTsPoint().stream().filter(s -> s.getTsDataType() == TsDataType.BOOLEAN).collect(Collectors.toList());
|
|
|
|
|
|
+ if (allTsPoint == null)
|
|
|
|
+ allTsPoint = thingsPointDao.getAllTsPoint();
|
|
|
|
|
|
|
|
+ List<TsPoint> booleanPointList = allTsPoint.stream().filter(s -> s.getTsDataType() == TsDataType.BOOLEAN).collect(Collectors.toList());
|
|
Date st = new Date();
|
|
Date st = new Date();
|
|
- for (Windturbine data :
|
|
|
|
|
|
+ /*for (Windturbine data :
|
|
windturbines) {
|
|
windturbines) {
|
|
|
|
|
|
- final List<TsPoint> collect = allTsPoint.stream().filter(s -> s.getThingId().equals(data.getCode())).collect(Collectors.toList());
|
|
|
|
|
|
+ List<TsPoint> collect = booleanPointList.stream().filter(s -> s.getThingId().equals(data.getId())).collect(Collectors.toList());
|
|
|
|
|
|
for (TsPoint point :
|
|
for (TsPoint point :
|
|
collect) {
|
|
collect) {
|
|
@@ -273,6 +285,14 @@ public class SpringStartAfter implements ApplicationRunner {
|
|
|
|
|
|
statement.executeUpdate(createTableSql);
|
|
statement.executeUpdate(createTableSql);
|
|
}
|
|
}
|
|
|
|
+ }*/
|
|
|
|
+ for (TsPoint point :
|
|
|
|
+ booleanPointList) {
|
|
|
|
+ String createTableSql = "create table if not exists " + dbName + "." + point.getId() + " using " + dbName + "." + stableName +
|
|
|
|
+ " tags('" + point.getId() +"','','',''" + ");";
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ statement.executeUpdate(createTableSql);
|
|
}
|
|
}
|
|
Date et = new Date();
|
|
Date et = new Date();
|
|
log.error("数据库创建完毕,耗时" + (et.getTime() - st.getTime()));
|
|
log.error("数据库创建完毕,耗时" + (et.getTime() - st.getTime()));
|