|
@@ -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);
|
|
|
}
|
|
|
}
|