我遇到了一个问题,即我的环境的索引代理无法处理新文档。在检查时我喜欢 dmi_queue_item cont 非常高,所以我发布了这个自我回答的问题,它将让我们知道如何使用 Xplore OLD 项目清理您的队列项目。
问问题
96 次
1 回答
1
为了清除不需要的队列项目,我们必须执行以下步骤
- 停止 XPlore 和 CS 的服务
- 备份非索引用户的项目
create table temp_dmi_queue_item_s as (select * from dmi_queue_item_s where name <> 'dm_fulltext_index_user' AND name <> 'dm_fulltext_index_user_01' );
- 截断表
truncate table dmi_queue_item_s;
- 恢复非索引用户的项目
insert into dmi_queue_item_s select * from temp_dmi_queue_item_s;
4)运行 ftintegrity 以修复存储库和索引数据之间的任何不一致
- 启动服务并添加测试文档,检查它是否排队等待索引
注意-确保上述步骤的实施应在生产前在非生产环境中进行测试
于 2021-02-10T09:55:08.717 回答