Browse Source

GA sync bug

wfansh 2 months ago
parent
commit
1cfe19fadc

BIN
conf/adweb_v3.sql.zip


+ 25 - 5
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/dmp/service/google/GAReportService.java

@@ -178,7 +178,11 @@ public class GAReportService {
                 this.getRemoveQueryWrapper(
                         GADailyReport.class, googleGTM.getSiteCode(), startDate, endDate));
 
-        gaDailyReportService.saveBatch(dailyReport, dailyReport.size());
+        if (CollectionUtils.isNotEmpty(dailyReport)) {
+            gaDailyReportService.saveBatch(dailyReport, dailyReport.size());
+        } else {
+            log.info("syncGADailyReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
+        }
     }
 
     /**
@@ -228,7 +232,11 @@ public class GAReportService {
                 this.getRemoveQueryWrapper(
                         GACountryReport.class, googleGTM.getSiteCode(), startDate, endDate));
 
-        gaCountryReportService.saveBatch(countryReport, countryReport.size());
+        if (CollectionUtils.isNotEmpty(countryReport)) {
+            gaCountryReportService.saveBatch(countryReport, countryReport.size());
+        } else {
+            log.info("syncGACountryReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
+        }
     }
 
     /**
@@ -298,7 +306,11 @@ public class GAReportService {
                 this.getRemoveQueryWrapper(
                         GASourceMediumReport.class, googleGTM.getSiteCode(), startDate, endDate));
 
-        gaSourceMediumReportService.saveBatch(sourceMediumReport, sourceMediumReport.size());
+        if (CollectionUtils.isNotEmpty(sourceMediumReport)) {
+            gaSourceMediumReportService.saveBatch(sourceMediumReport, sourceMediumReport.size());
+        } else {
+            log.info("syncGASourceMediumReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
+        }
     }
 
     /**
@@ -358,7 +370,11 @@ public class GAReportService {
                 this.getRemoveQueryWrapper(
                         GAPagePathReport.class, googleGTM.getSiteCode(), startDate, endDate));
 
-        gaPagePathReportService.saveBatch(pagePathReport, pagePathReport.size());
+        if (CollectionUtils.isNotEmpty(pagePathReport)) {
+            gaPagePathReportService.saveBatch(pagePathReport, pagePathReport.size());
+        } else {
+            log.info("syncGAPagePathReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
+        }
     }
 
     /**
@@ -427,7 +443,11 @@ public class GAReportService {
                 this.getRemoveQueryWrapper(
                         GADeviceReport.class, googleGTM.getSiteCode(), startDate, endDate));
 
-        gaDeviceReportService.saveBatch(deviceReport, deviceReport.size());
+        if (CollectionUtils.isNotEmpty(deviceReport)) {
+            gaDeviceReportService.saveBatch(deviceReport, deviceReport.size());
+        } else {
+            log.info("syncGADeviceReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
+        }
     }
 
     /**

+ 1 - 1
jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml

@@ -186,7 +186,7 @@ spring:
       password:
   # rabbit mq配置
   rabbitmq:
-    host: rabbit-mq.v3.adwebcloud.com
+    host: 18.162.61.24
     username: admin
     password: Initial0
     port: 5672