|
@@ -35,6 +35,7 @@ import io.grpc.ManagedChannel;
|
|
|
import io.grpc.ManagedChannelBuilder;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
import com.slibra.common.utils.StringUtils;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
@@ -117,6 +118,10 @@ public class RyTask
|
|
|
@Autowired
|
|
|
private JsCsFormatData jsCsFormatData;
|
|
|
|
|
|
+ /** 使用的是哪个环境 */
|
|
|
+ @Value("${spring.profiles.active}")
|
|
|
+ private String environment;
|
|
|
+
|
|
|
|
|
|
// public final static StopWatch watch = new StopWatch("task");
|
|
|
public static final String[] queryTags = {"信义污水厂JS_COD_Value","信义污水厂JS_PH_Value","信义污水厂JS_SS_Value","信义污水厂JS_ZL_Value","信义污水厂JS_ZA_Value","信义污水厂JS_AD_Value","信义污水厂JS_T_Value","信义污水厂进水泵房液位","信义污水厂出水瞬时流量","信义污水厂升级出水COD","信义污水厂升级出水PH","信义污水厂升级出水SS","信义污水厂升级出水TN","信义污水厂升级出水TP","信义污水厂升级出水氨氮","信义污水厂AIT202_Value","信义污水厂AIT203_Value","信义污水厂AIT207_Value","信义污水厂AIT206_Value","信义污水厂AIT209_Value","信义污水厂AIT210_Value","信义污水厂进水TDS","信义污水厂FT101_Value","信义污水厂SWCHHYHLB1_R_Value","信义污水厂SWCHHYHLB2_R_Value","信义污水厂SWCHHYHLB3_R_Value","信义污水厂SWCHHYHLB4_R_Value","信义污水厂SWCHHYHLB5_R_Value","信义污水厂SWCHHYHLB6_R_Value","信义污水厂SWCWNHLB1_R_Value","信义污水厂SWCWNHLB2_R_Value","信义污水厂SWCWNHLB3_R_Value","信义污水厂SWCWNHLB4_R_Value","信义污水厂SWCWNHLB5_R_Value","信义污水厂GFJ1_R_Value","信义污水厂GFJ2_R_Value","信义污水厂GFJ3_R_Value","信义污水厂GFJ4_R_Value","信义污水厂GFJ5_R_Value","信义污水厂GFJ6_R_Value","信义污水厂GFJ1_KQLL_Value","信义污水厂GFJ2_KQLL_Value","信义污水厂GFJ3_KQLL_Value","信义污水厂GFJ4_KQLL_Value","信义污水厂GFJ5_KQLL_Value","信义污水厂GFJ6_KQLL_Value","信义污水厂实际碳源加药量","信义污水厂除磷加药瞬时流量", "信义污水厂_除磷P04预测值_"};
|
|
@@ -633,23 +638,27 @@ public class RyTask
|
|
|
Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(TXinyiRobot::getTestHour))),
|
|
|
ArrayList::new
|
|
|
));
|
|
|
- if(!CollectionUtils.isEmpty(uniqueList))
|
|
|
- for (TXinyiRobot tXinyiRobot : uniqueList) {
|
|
|
- //判断是否添加过了(小时)
|
|
|
- String testHour = tXinyiRobot.getTestHour();
|
|
|
- List<TXinyiRobot> tXinyiRobotList = this.xinyiRobotMapper.selectTXinyiRobotList(TXinyiRobot.builder().testHour(testHour).build());
|
|
|
- if(CollectionUtils.isEmpty(tXinyiRobotList)){
|
|
|
- this.xinyiRobotMapper.insertTXinyiRobot(tXinyiRobot);
|
|
|
- //2024年6月18日10:45:20 额外计算一下预测的准确度
|
|
|
- asyncTask.updateForecastComparisonByRobot(tXinyiRobot);
|
|
|
-
|
|
|
- //2024年7月6日10:32:36 大宽表的数据处理
|
|
|
- asyncTask.updateBigTableHourByRobot(tXinyiRobot);
|
|
|
+ if(!CollectionUtils.isEmpty(uniqueList)){
|
|
|
+ for (TXinyiRobot tXinyiRobot : uniqueList) {
|
|
|
+ //判断是否添加过了(小时)
|
|
|
+ String testHour = tXinyiRobot.getTestHour();
|
|
|
+ List<TXinyiRobot> tXinyiRobotList = this.xinyiRobotMapper.selectTXinyiRobotList(TXinyiRobot.builder().testHour(testHour).build());
|
|
|
+ if(CollectionUtils.isEmpty(tXinyiRobotList)){
|
|
|
+ this.xinyiRobotMapper.insertTXinyiRobot(tXinyiRobot);
|
|
|
+ //2024年6月18日10:45:20 额外计算一下预测的准确度
|
|
|
+ asyncTask.updateForecastComparisonByRobot(tXinyiRobot);
|
|
|
+
|
|
|
+ //2024年7月6日10:32:36 大宽表的数据处理
|
|
|
+ asyncTask.updateBigTableHourByRobot(tXinyiRobot);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ log.info("{}已经吧保存过了,无需重复保存***&&&···", testHour);
|
|
|
+ }
|
|
|
+ //2024年08月09日14:26:29 为了节省费用,测试环境关闭报警并增加手动触发报警操作
|
|
|
+ if(PROD_ENVIRONMENT.equalsIgnoreCase(environment)){
|
|
|
+ asyncTask.handleRobotWarning(uniqueList);
|
|
|
}
|
|
|
- else
|
|
|
- log.info("{}已经吧保存过了,无需重复保存***&&&···", testHour);
|
|
|
}
|
|
|
- asyncTask.handleRobotWarning(uniqueList);
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -732,8 +741,10 @@ public class RyTask
|
|
|
// handleXinYiWarningsYC(cscodBzz, split, cscodGkz, BusinessEnum.WarningCategoryEnum.CS_COD_YC.getCode(), hour, normConfig);
|
|
|
continue;
|
|
|
}
|
|
|
- //解析数据 处理报警 调研prompt 保存等
|
|
|
- this.handlePredictorWarning(split, hour, task, tXinyiIndustries6, tXinyiRobots6, date);
|
|
|
+ if(PROD_ENVIRONMENT.equalsIgnoreCase(environment)){
|
|
|
+ //解析数据 处理报警 调研prompt 保存等
|
|
|
+ this.handlePredictorWarning(split, hour, task, tXinyiIndustries6, tXinyiRobots6, date);
|
|
|
+ }
|
|
|
}else {
|
|
|
log.error("预测数据返回结果为{},无法正常解析", result);
|
|
|
}
|