Results 5 comments of axb

I have the same problem. Sometimes error configuration causes all my service to crash. I think invalid properties could make an exception during bean creating, but not destroy the pervious...

> Instead of silently skipping we should fail as a validation error. @mrunalp Thanks for reply. I'm still a little confused about the `idle` parameter. There is no description in...

新版本的mingw和现在的代码有些冲突,你重新pull一下最新代码应该就不会出现这个问题了。 另外还发现了新版本qt和目前我用的全局快捷键库有些冲突,如果编译时报'qtxglobalshortcut'相关错误的话可以先屏蔽一下globalshortcut功能 mangaview.pro中注释掉 ``` include(qxtglobalshortcut/qxtglobalshortcut.pri) ``` shortcutmanager.cpp中注释掉 ``` if(key.hasAttribute("global")) { QString globalShortcut=key.text(); QxtGlobalShortcut *shortCut=new QxtGlobalShortcut(); QKeySequence seq(globalShortcut); bool ok=shortCut->setShortcut(seq); if(ok) { qDebug()

1、目前执行记录是存储在redis中的,请问你们生产环境也是这样存储的吗?没有做持久化吗?会不会存在很多大key的场景? 生产环境执行中的记录在redis集群,执行后转到关系数据库,redis本身支持持久化。 大key指的是大value吗?不存在,生产环境中的大文件通过文件存储传输,不走redis。 2、目前UI上是没有context参数查询的接口的,后续是有相关的开发吗?有context 查询,排查问题可能比较容易一点 UI的流程列表-执行详情页面可以看到当前context 接口参考https://github.com/weibocom/rill-flow/blob/main/rill-flow-web/src/main/java/com/weibo/rill/flow/controller/DAGRuntimeController.java#L83

@ZhangTeng2017 生产环境是执行后转到关系数据库的,这部分逻辑目前没有开源。