用 Luke/Indexreader 打开时 Lucene 索引被删除
当我的索引程序崩溃时,我正在创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最有可能的是,您的索引代码在崩溃之前从未调用过
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 callcommit()
everyX
added documents.