cube.js TimeoutError: ResourceRequest timed out 问题参考解决方法
查看最近官方提交了一个pr进行了此问题的修复(这个问题官方提交了两个pr)
参考pr
https://github.com/cube-js/cube.js/pull/2576
https://github.com/cube-js/cube.js/pull/2575
核心解决说明
主要是2576 这个pr,核心代码(主要是一个异常处理)
async reconcileQueue() 方法
具体修改
async reconcileQueue() {
if (!this.reconcilePromise) {
this.reconcileAgain = false;
this.reconcilePromise = this.reconcileQueueImpl().catch((e) => {
this.reconcilePromise = null;
throw e;
}).then(() => {
this.reconcilePromise = null;
if (this.reconcileAgain) {
return this.reconcileQueue();
}
return null;
});
}
else {
this.reconcileAgain = true;
}
return this.reconcilePromise;
}
同时官方也进行了一些redis pool 释放的处理参考2575 pr
参考资料
https://github.com/cube-js/cube.js/pull/2576
https://github.com/cube-js/cube.js/pull/2575
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
2020-04-20 AxonFrameworksAxonFramework jvm 上强大的演进式事件驱动的微服务框架
2020-04-20 earthly 通用容器构建工具
2020-04-20 ff4j web console 配置说明
2020-04-20 ff4j aop模式动态bean 切换
2020-04-20 ff4j Flipping Strategies
2020-04-20 ff4j 一些高级概念
2020-04-20 ff4j spring boot jdbc 基本试用