Uses of Class
org.apache.lucene.index.IndexDeletionPolicy
-
Packages that use IndexDeletionPolicy Package Description org.apache.lucene.index org.elasticsearch.index.engine -
-
Uses of IndexDeletionPolicy in org.apache.lucene.index
Subclasses of IndexDeletionPolicy in org.apache.lucene.index Modifier and Type Class Description classKeepOnlyLastCommitDeletionPolicyThisIndexDeletionPolicyimplementation that keeps only the most recent commit and immediately removes all prior commits after a new commit is done.Fields in org.apache.lucene.index declared as IndexDeletionPolicy Modifier and Type Field Description protected IndexDeletionPolicyLiveIndexWriterConfig. delPolicyIndexDeletionPolicycontrolling when commit points are deleted.Methods in org.apache.lucene.index that return IndexDeletionPolicy Modifier and Type Method Description IndexDeletionPolicyIndexWriterConfig. getIndexDeletionPolicy()IndexDeletionPolicyLiveIndexWriterConfig. getIndexDeletionPolicy()Returns theIndexDeletionPolicyspecified inIndexWriterConfig.setIndexDeletionPolicy(IndexDeletionPolicy)or the defaultKeepOnlyLastCommitDeletionPolicy/Methods in org.apache.lucene.index with parameters of type IndexDeletionPolicy Modifier and Type Method Description IndexWriterConfigIndexWriterConfig. setIndexDeletionPolicy(IndexDeletionPolicy delPolicy)Expert: allows an optionalIndexDeletionPolicyimplementation to be specified. -
Uses of IndexDeletionPolicy in org.elasticsearch.index.engine
Subclasses of IndexDeletionPolicy in org.elasticsearch.index.engine Modifier and Type Class Description classCombinedDeletionPolicyAnIndexDeletionPolicythat coordinates between Lucene's commits and the retention of translog generation files, making sure that all translog files that are needed to recover from the Lucene commit are not deleted.
-