소스 검색

refactor(data-adapter):调整数据获取策略和网络请求超时设置

- 将数据获取的默认页面大小从 100000 调整为 90000,以优化性能和资源使用- 将 MyWebClient 的响应超时时间从 30秒调整为 9 分钟,以适应可能的网络延迟
fx239 3 달 전
부모
커밋
60b77313a4

+ 1 - 1
data-adapter/src/main/java/com/gyee/dataadapter/dao/MyWebClient.java

@@ -23,7 +23,7 @@ public class MyWebClient {
                                 .secure(sslContextSpec -> {
                                     sslContextSpec.sslContext(sslContext());
                                 })
-                                .responseTimeout(Duration.ofMillis(30000))  // 设置 Netty 的连接超时
+                                .responseTimeout(Duration.ofMinutes(9))  // 设置 Netty 的连接超时
                 ))
                 .baseUrl("https://10.220.1.5:5300")
                 //                .defaultHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON_VALUE) // 示例:添加默认头部

+ 2 - 2
data-adapter/src/main/java/com/gyee/dataadapter/service/impl/AdapterServiceImpl.java

@@ -87,7 +87,7 @@ public class AdapterServiceImpl implements IAdapterService {
         if (StrUtil.isNotBlank(pageSize)){
             sb.append(pageSize);
         }else {
-            sb.append(100000);
+            sb.append(90000);
         }
         sb.append("&isDesc=");
         if (isDesc == null) isDesc = false;
@@ -140,7 +140,7 @@ public class AdapterServiceImpl implements IAdapterService {
                 .append("&sampleType=").append(sampleType).append("&paths=").append(paths);
         sb.append("&sampleRate=").append(jg);
         sb.append("&pageIndex=1");
-        sb.append("&pageSize=100000");
+        sb.append("&pageSize=90000");
         sb.append("&isDesc=false");
 
         Mono<String> mono2 = myWebClient.webClient.get().uri(sb.toString())