|
@@ -1,6 +1,9 @@
|
|
|
package com.gyee.redis2taos.service;
|
|
|
|
|
|
import com.gyee.redis2taos.config.TaosConfig;
|
|
|
+import com.gyee.redis2taos.timeseries.BasicTsPoint;
|
|
|
+import com.gyee.redis2taos.timeseries.TsDataType;
|
|
|
+import com.gyee.redis2taos.timeseries.TsPoint;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -9,6 +12,9 @@ import java.sql.ResultSet;
|
|
|
import java.sql.Statement;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.Set;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
@Slf4j
|
|
|
@Service
|
|
@@ -18,6 +24,8 @@ public class TaosService {
|
|
|
private TaosConfig taosConfig;
|
|
|
@Resource
|
|
|
private FileService fileService;
|
|
|
+ @Resource
|
|
|
+ private RedisService redisService;
|
|
|
|
|
|
public boolean createDataBase(int keepday) throws Exception {
|
|
|
log.info("创建taos库!");
|
|
@@ -75,6 +83,49 @@ public class TaosService {
|
|
|
return i;
|
|
|
}
|
|
|
|
|
|
+ public int createTables2() throws Exception {
|
|
|
+ log.info("创建taos表!");
|
|
|
+ Statement st = taosConfig.getInstance().createStatement();
|
|
|
+
|
|
|
+ Set<String> keys = redisService.getKeys();
|
|
|
+ if(keys.size()==0) return 0;
|
|
|
+ log.info("读取rediskeys成功!!!" + keys.size() + "个点。");
|
|
|
+ //按类型分点
|
|
|
+ Map<TsDataType, List<BasicTsPoint>> di = keys.stream().map(ss -> {
|
|
|
+ if (ss.contains("DI") || ss.contains("di")) {
|
|
|
+ return new BasicTsPoint(ss, TsDataType.BOOLEAN);
|
|
|
+ } else {
|
|
|
+ return new BasicTsPoint(ss, TsDataType.DOUBLE);
|
|
|
+ }
|
|
|
+ }).collect(Collectors.groupingBy(TsPoint::getTsDataType));
|
|
|
+ //di点
|
|
|
+ List<String> boolCollect = di.get(TsDataType.BOOLEAN).stream().map(k1 -> k1.getId()).collect(Collectors.toList());
|
|
|
+ //ai点
|
|
|
+ List<String> douCollect = di.get(TsDataType.DOUBLE).stream().map(k1 -> k1.getId()).collect(Collectors.toList());
|
|
|
+
|
|
|
+ int k = 0;
|
|
|
+ for (String s : boolCollect) {
|
|
|
+ st.executeUpdate(getDiSql(s));
|
|
|
+ log.info(String.valueOf(++k));
|
|
|
+ }
|
|
|
+ for (String s : douCollect) {
|
|
|
+ st.executeUpdate(getAiSql(s));
|
|
|
+ log.info(String.valueOf(++k));
|
|
|
+ }
|
|
|
+ log.info("taos表创建完成!");
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ private String getAiSql(String s) {
|
|
|
+ return "CREATE TABLE IF NOT EXISTS "+taosConfig.getDbName()+"."+s+" USING "+taosConfig.getDbName()
|
|
|
+ +"."+taosConfig.getAIStableName()+" TAGS('','','','','',1,'');";
|
|
|
+ }
|
|
|
+
|
|
|
+ private String getDiSql(String s) {
|
|
|
+ return "CREATE TABLE IF NOT EXISTS "+taosConfig.getDbName()+"."+s+" USING "+taosConfig.getDbName()
|
|
|
+ +"."+taosConfig.getDIStableName()+" TAGS('','','','','',1,'');";
|
|
|
+ }
|
|
|
+
|
|
|
public List<String> deleteTables() throws Exception {
|
|
|
Statement st = taosConfig.getInstance().createStatement();
|
|
|
String showSTableSql = "SHOW DATABASES;";
|