Lucene index backup(Lucene 索引备份)
问题描述
在不使索引脱机(热备份)的情况下备份 lucene 索引的最佳做法是什么?
What is the best practice to backup a lucene index without taking the index offline (hot backup)?
推荐答案
您不必为了备份索引而停止 IndexWriter.
You don't have to stop your IndexWriter in order to take a backup of the index.
只需使用 SnapshotDeletionPolicy,它可以让您保护"给定的提交点(及其包含的所有文件)不被删除.然后,将该提交点中的文件复制到您的备份,最后释放提交.
Just use the SnapshotDeletionPolicy, which lets you "protect" a given commit point (and all files it includes) from being deleted. Then, copy the files in that commit point to your backup, and finally release the commit.
如果备份需要一段时间才能运行,这很好——只要您不使用 SnapshotDeletionPolicy 释放提交点,IndexWriter 就不会删除文件(例如,即使它们已经合并在一起).
It's fine if the backup takes a while to run -- as long as you don't release the commit point with SnapshotDeletionPolicy, the IndexWriter will not delete the files (even if, eg, they have since been merged together).
这为您提供了一致的备份,它是索引的时间点映像,不会阻塞正在进行的索引.
This gives you a consistent backup which is a point-in-time image of the index without blocking ongoing indexing.
我在 Lucene in Action(第 2 版)中对此进行了介绍,并且有从 http://提供(免费)的书中摘录的论文www.manning.com/hatcher3,使用 Lucene 进行热备份",对此进行了更详细的描述.
I wrote about this in Lucene in Action (2nd edition), and there's paper excerpted from the book available (free) from http://www.manning.com/hatcher3, "Hot Backups with Lucene", that describes this in more detail.
这篇关于Lucene 索引备份的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Lucene 索引备份


- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01