dosubot[bot]
dosubot[bot]
Hi @a426855a5a5! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ant-design-charts team. 这个问题在 ant-design-charts 的 DualAxes 图表中确实存在类似情况:当柱状图(interval)和折线图(line/area)混合时,配置 area 后,柱状图的 columnWidthRatio 可能会失效。这通常是因为 DualAxes 内部在多视图渲染时,area 作为一种扩展 geometry,可能会影响 interval 的布局算法,导致 columnWidthRatio 被覆盖或未生效。相关讨论和类似问题可以参考 [issue #1738](https://github.com/ant-design/ant-design-charts/issues/1738) 和...
你的情况很可能是因为 Raft 协议的状态同步延迟或清理不完全导致的。HugeGraph 的 store 节点移除分为两步:一是 PD 元数据更新,二是 Raft 集群成员变更。即使 PD 查询不到 store1,Raft 层如果没有及时同步或有网络分区、RPC 重试等异常,其他节点仍可能尝试与 store1 通信,导致 raft-hugegraph-store.log 持续报错。这在分布式系统中是常见现象,尤其是在 HugeGraph 1.5.0 版本下,移除 HStore 节点后集群可能会出现不可用或异常 RPC 错误的情况,且 initial-store-count 配置也无法避免此问题 [相关讨论](https://github.com/apache/incubator-hugegraph/issues/2849)。 建议你:...
手动触发 HugeGraph HStore Raft 成员变更和清理残留节点,推荐流程如下: 1. 通过 PD 的 REST API 删除节点: 执行 `DELETE /v1/store/{storeId}`,这会在 Raft 集群中移除指定 Store 节点并同步成员信息。如果节点已被 PD 移除但 Raft 层还报错,说明状态未完全收敛 [参考](https://github.com/apache/incubator-hugegraph/issues/2787)。 2. 检查所有 PD 和 Store 节点的配置(如...
Hi @susakin! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the x team. 目前 useXAgent 和 XAgent 都没有在组件卸载时自动清理未完成请求的逻辑,也没有 abortAll 方法。XAgent 只在每次请求时通过 onStream 回调暴露单个 AbortController,但不会统一管理所有请求的 controller,也没有批量中止的能力。useXAgent 只是简单 memoize 并返回 XAgent 实例,没有在 useEffect 的 cleanup...
The 400 Bad Request error from Anthropic occurs because both temperature and top_p are being set at the same time, which the Claude models do not allow—only one of these...
To switch from MinIO to OSS object storage in RAGFlow, you need to do two things: 1. In your YAML config, add an `oss` section with your OSS credentials (see...
A recent fix addressed a bug in the OSS upload logic: the `put()` method in the OSS connector was updated to accept an optional `tenant_id` argument. If your deployment is...
Yes, your previous MinIO usage is likely related to the issue. RAGFlow does not automatically migrate or bridge files between storage backends. When you switch from MinIO to OSS, only...
To fully remove MinIO-related file data after switching to OSS, you need to clean up both MySQL and Elasticsearch. RAGFlow stores file metadata and references in MySQL tables (like `file`,...
Since you’re still seeing a 500 error after a clean redeployment with new MySQL, Elasticsearch, OSS, and Redis (and no MinIO), the issue is almost certainly with configuration or environment...