摘要:
Caused by: java.sql.SQLException: No suitable driver found for jdbc:mysql://25.79.1.13:90/tide_cloud?connectTimeout=60000&socketTimeout=60000 at java. 阅读全文
摘要:
目前项目中写动态SQL,用的都是下面的语法: @Select("<script>" + "SELECT wr.id,wr.customer_id,wr.type,wr.detail from xxx rel " + "LEFT JOIN xxx wr on rel.rule_id=wr.id whe 阅读全文
摘要:
https://cloud.tencent.com/developer/article/1669299 微服务一般都采用集群方式部署,而且在高并发下经常需要对服务进行扩容、缩容、上线、下线的操作。比如我们需要更新配置,又或者需要同时失效所有服务器上的某个缓存,需要向所有相关的服务器发送命令,此时就可 阅读全文
摘要:
遇到的问题 MockedStatic<EnvUtil> envUtilMockedStatic; envUtilMockedStatic = Mockito.mockStatic(EnvUtil.class); EnvUtil.setEnvironment(new StandardEnvironme 阅读全文
摘要:
参考资料 https://blog.csdn.net/qq_36996635/article/details/126062991 首先,应用ServiceA通过DNS查询获取到ServiceB的可用IP列表 DNS-F会拦截到ServiceA的查询请求,判断自己是否该查询的答案,如果有(服务已在VI 阅读全文
摘要:
车辆GPS流和车辆过地磅重量流union,地磅数据最多晚到5天 使用allowedLateness(5d)可以让窗户等待5天再关闭。 1、第二天flink任务重启了,迟到数据还能处理吗? 2、大部分车辆都没有称重数据,如何提前关闭这些窗口,避免过多浪费内存 设置allowedLateness(5d) 阅读全文
摘要:
背景说明 我在排查 https://www.cnblogs.com/xushengbin/p/18368362 问题过程中,前前后后花了超过16小时。 做了各种尝试,才搞明白原来是自己上周做了一个性能优化引入的问题。 定位问题原因时间成本很高,原因如下: 最近几天数据不一致的行数明显增多(1天200 阅读全文
摘要:
问题描述 SingleOutputStreamOperator<Row> aggregatedStream = patrolStream .union(timerGarbageStream) .filter(v -> v.getFacility() != null && (v.getFacility 阅读全文
摘要:
核心代码 public class TrackLog { private Integer entityId; // flink的时间类型,必须使用LocalDateTime private LocalDateTime statDateTime; public Integer getEntityId( 阅读全文
摘要:
问题描述 通过doris stream load http接口(请求的是FE地址,中间加了一层nginx反向代理),导入数据时,设置了Expect头,但是接口还是返回: “There is no 100-continue header” 排查方法 1、修改doris debug log level, 阅读全文