Browse Source

Merge branch 'mysql' of wangfan/adweb3-server into master

wangfan 2 months ago
parent
commit
e3f65c39ae

BIN
conf/adweb_v3.sql.zip


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

@@ -10,6 +10,7 @@ import jakarta.annotation.PostConstruct;
 import lombok.extern.slf4j.Slf4j;
 
 import org.apache.commons.collections4.CollectionUtils;
+import org.apache.commons.lang3.ThreadUtils;
 import org.apache.commons.lang3.reflect.TypeUtils;
 import org.jeecg.common.util.DateUtils;
 import org.jeecg.common.util.FastJsonUtil;
@@ -35,6 +36,7 @@ import org.springframework.core.annotation.AnnotationUtils;
 import org.springframework.stereotype.Service;
 import org.springframework.web.client.RestTemplate;
 
+import java.time.Duration;
 import java.util.Date;
 import java.util.List;
 import java.util.Objects;
@@ -107,7 +109,11 @@ public class GAReportService {
                 this.syncGASourceMediumReport(googleGTM);
                 this.syncGAPagePathReport(googleGTM);
                 this.syncGADeviceReport(googleGTM);
-            } catch (RuntimeException e) {
+
+                // Google Analytics API限流 - 10 queries per second (QPS) per IP address
+                // https://developers.google.com/analytics/devguides/config/userdeletion/v3/limits-quotas
+                ThreadUtils.sleep(Duration.ofSeconds(1));
+            } catch (InterruptedException | RuntimeException e) {
                 log.warn("同步GA报表异常, siteCode = {], error = {}", googleGTM.getSiteCode(), e);
             }
         }