فهرست منبع

设备维保和更换建议 添加线程池

miaolijing 3 سال پیش
والد
کامیت
d0cd7d9e91

+ 20 - 0
src/main/java/com/persagy/apm/diagnose/config/ThreadPoolExecutorConfig.java

@@ -80,4 +80,24 @@ public class ThreadPoolExecutorConfig {
             log.info("asyncSendDataTask is rejected");
         });
     }
+
+    @Bean("asyncComputeMaintenanceDataExecutor")
+    public Executor asyncComputeMaintenanceDataExecutor() {
+        return new ThreadPoolExecutorExtend(corePoolSize, maxPoolSize,
+                5, TimeUnit.SECONDS,
+                new LinkedBlockingQueue<>(queueCapacity),
+                threadFactory, (r, executor) -> {
+            log.info("asyncComputeMaintenanceDataExecutor is rejected");
+        });
+    }
+
+    @Bean("asyncGoingDestroyEquipExecutor")
+    public Executor asyncGoingDestroyEquipExecutor() {
+        return new ThreadPoolExecutorExtend(corePoolSize, maxPoolSize,
+                5, TimeUnit.SECONDS,
+                new LinkedBlockingQueue<>(queueCapacity),
+                threadFactory, (r, executor) -> {
+            log.info("asyncGoingDestroyEquipExecutor is rejected");
+        });
+    }
 }

+ 2 - 4
src/main/java/com/persagy/apm/diagnose/maintenance/service/impl/ProjectDataRecordServiceImpl.java

@@ -26,6 +26,7 @@ import com.persagy.apm.energyalarmstarter.alarmdata.model.dto.alarmrecord.Update
 import com.persagy.apm.energyalarmstarter.alarmdata.model.vo.AlarmRecordItem;
 import com.persagy.apm.energyalarmstarter.alarmdata.service.AlarmConfigServiceImpl;
 import com.persagy.apm.energyalarmstarter.alarmdata.service.AlarmRecordServiceImpl;
+import com.persagy.framework.ems.data.mvc.dao.CoreDao;
 import com.persagy.framework.ems.data.pojo.hbase.MonitorIndicatorRecord;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.lang.time.DateUtils;
@@ -76,9 +77,6 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
     @Autowired
     private EnergyAlarmServiceImpl energyAlarmService;
 
-    @Resource(name = "ZillionDao")
-    private CoreDao coredao;
-
     @Override
     @Async("asyncComputeMaintenanceDataExecutor")
     public Future<String> computeMaintenanceData(Date todayDate, String projectId, CountDownLatch latch) throws Exception {
@@ -948,7 +946,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
         queryAlarmRecordDTO.setProjectId(projectId);
         queryAlarmRecordDTO.setCategory(cateGoryList);
         DmpResult<List<AlarmRecordItem>> configItemResultList = alarmRecordService.query(queryAlarmRecordDTO);
-        List<AlarmRecordItem> alarmRecordItemList = DmpResultUtil.getRecordData(configItemResultList);
+        List<AlarmRecordItem> alarmRecordItemList = DmpResultUtil.getData(configItemResultList);
         if (!CollectionUtils.isEmpty(alarmRecordItemList)){
             alarmRecordItemList.stream().collect(Collectors.toMap(AlarmRecordItem::getObjId, Function.identity(), (a, b) -> b));
         }

+ 32 - 0
src/main/java/com/persagy/apm/diagnose/service/schedule/SendMaintenanceData.java

@@ -0,0 +1,32 @@
+//package com.persagy.apm.diagnose.service.schedule;
+//
+//import com.persagy.apm.diagnose.service.MaintenanceDataService;
+//import lombok.extern.slf4j.Slf4j;
+//import org.springframework.beans.factory.annotation.Autowired;
+//import org.springframework.beans.factory.annotation.Value;
+//import org.springframework.scheduling.annotation.Scheduled;
+//import org.springframework.stereotype.Service;
+//
+///**
+// * 发送 设备维保日维度数据
+// */
+//@Slf4j
+//@Service
+//public class SendMaintenanceData {
+//
+//    @Value("${send.maintenance.data.enable:false}")
+//    private boolean enable;
+//
+//    @Autowired
+//    private MaintenanceDataService maintenanceDataService;
+//
+//    @Scheduled(cron="${send.maintenance.data.cron:0 10 4 * * ?}")
+//    public void sendMaintenanceData() throws Exception {
+//        if (!enable) {
+//            //发送未开启
+//            return;
+//        }
+//        log.info("【发送设备维保日维度平均值数据线程】:发送数据开始.......");
+//        maintenanceDataService.sendMaintenanceData();
+//    }
+//}

+ 0 - 7
src/main/java/com/persagy/apm/diagnose/utils/DmpResultUtil.java

@@ -24,11 +24,4 @@ public class DmpResultUtil {
         return configItem.getData();
     }
 
-    public static <T>  T getRecordData(DmpResult<T> recordItem) {
-        String result = recordItem.getResult();
-        if(StringUtil.isBlank(result)||!result.equals(DmpResult.SUCCESS)){
-            return  null;
-        }
-        return recordItem.getData();
-    }
 }