用 Luke/Indexreader 打开时 Lucene 索引被删除

发布于 2024-09-13 07:23:37 字数 187 浏览 7 评论 0原文

当我的索引程序崩溃时,我正在创建 lucene 索引。索引器在崩溃之前已处理了大约 300 万个文档,生成了一个 14GB 的文件。当我在 Luke 中打开索引(使用强制解锁)时,整个索引都消失了!噗。

打开的索引有 0 个文档,其大小减小到 1kb。有没有人经历过这个,或者可以提供解释

(使用 Lucene.Net 2.9)

I was creating a lucene index when my indexing program crashed. The indexer had processed about 3M documents before crashing, producing a 14GB file. When I opened the index in Luke (with force unlock), the whole index was gone!. poof.

The opened index had 0 documents and its size was reduced to 1kb. Did anyone experience this, or can offer an explanation

(Using Lucene.Net 2.9)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2024-09-20 07:23:37

最有可能的是,您的索引代码在崩溃之前从未调用过 commit()。如果您不想丢失所有更改,则应在每个添加的 X 文档中调用 commit()

Most probably, your indexing code never called commit() before crashing. If you don't want to lose all your changes, you should call commit() every X added documents.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文