mirror of https://github.com/apache/lucene.git
LUCENE-1147: add -segment option to CheckIndex tool, to check only a specific segment or segments
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@615159 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ace4103a7
commit
f99e4e7260
|
@ -14,6 +14,10 @@ New features
|
||||||
1. LUCENE-1137: Added Token.set/getFlags() accessors for passing more information about a Token through the analysis
|
1. LUCENE-1137: Added Token.set/getFlags() accessors for passing more information about a Token through the analysis
|
||||||
process. The flag is not indexed/stored and is thus only used by analysis.
|
process. The flag is not indexed/stored and is thus only used by analysis.
|
||||||
|
|
||||||
|
2. LUCENE-1147: Add -segment option to CheckIndex tool so you can
|
||||||
|
check only a specific segment or segments in your index. (Mike
|
||||||
|
McCandless)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
|
|
|
@ -27,6 +27,8 @@ import java.io.PrintStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Basic tool to check the health of an index and write a
|
* Basic tool to check the health of an index and write a
|
||||||
|
@ -62,6 +64,11 @@ public class CheckIndex {
|
||||||
|
|
||||||
/** Returns true if index is clean, else false.*/
|
/** Returns true if index is clean, else false.*/
|
||||||
public static boolean check(Directory dir, boolean doFix) throws IOException {
|
public static boolean check(Directory dir, boolean doFix) throws IOException {
|
||||||
|
return check(dir, doFix, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Returns true if index is clean, else false.*/
|
||||||
|
public static boolean check(Directory dir, boolean doFix, List onlySegments) throws IOException {
|
||||||
NumberFormat nf = NumberFormat.getInstance();
|
NumberFormat nf = NumberFormat.getInstance();
|
||||||
SegmentInfos sis = new SegmentInfos();
|
SegmentInfos sis = new SegmentInfos();
|
||||||
|
|
||||||
|
@ -115,6 +122,15 @@ public class CheckIndex {
|
||||||
|
|
||||||
out.println("Segments file=" + segmentsFileName + " numSegments=" + numSegments + " version=" + sFormat);
|
out.println("Segments file=" + segmentsFileName + " numSegments=" + numSegments + " version=" + sFormat);
|
||||||
|
|
||||||
|
if (onlySegments != null) {
|
||||||
|
out.print("\nChecking only these segments:");
|
||||||
|
Iterator it = onlySegments.iterator();
|
||||||
|
while (it.hasNext()) {
|
||||||
|
out.print(" " + it.next());
|
||||||
|
}
|
||||||
|
out.println(":");
|
||||||
|
}
|
||||||
|
|
||||||
if (skip) {
|
if (skip) {
|
||||||
out.println("\nERROR: this index appears to be created by a newer version of Lucene than this tool was compiled on; please re-compile this tool on the matching version of Lucene; exiting");
|
out.println("\nERROR: this index appears to be created by a newer version of Lucene than this tool was compiled on; please re-compile this tool on the matching version of Lucene; exiting");
|
||||||
return false;
|
return false;
|
||||||
|
@ -127,6 +143,8 @@ public class CheckIndex {
|
||||||
int numBadSegments = 0;
|
int numBadSegments = 0;
|
||||||
for(int i=0;i<numSegments;i++) {
|
for(int i=0;i<numSegments;i++) {
|
||||||
final SegmentInfo info = sis.info(i);
|
final SegmentInfo info = sis.info(i);
|
||||||
|
if (onlySegments != null && !onlySegments.contains(info.name))
|
||||||
|
continue;
|
||||||
out.println(" " + (1+i) + " of " + numSegments + ": name=" + info.name + " docCount=" + info.docCount);
|
out.println(" " + (1+i) + " of " + numSegments + ": name=" + info.name + " docCount=" + info.docCount);
|
||||||
int toLoseDocCount = info.docCount;
|
int toLoseDocCount = info.docCount;
|
||||||
|
|
||||||
|
@ -321,16 +339,38 @@ public class CheckIndex {
|
||||||
public static void main(String[] args) throws Throwable {
|
public static void main(String[] args) throws Throwable {
|
||||||
|
|
||||||
boolean doFix = false;
|
boolean doFix = false;
|
||||||
for(int i=0;i<args.length;i++)
|
List onlySegments = new ArrayList();
|
||||||
|
String indexPath = null;
|
||||||
|
int i = 0;
|
||||||
|
while(i < args.length) {
|
||||||
if (args[i].equals("-fix")) {
|
if (args[i].equals("-fix")) {
|
||||||
doFix = true;
|
doFix = true;
|
||||||
break;
|
i++;
|
||||||
|
} else if (args[i].equals("-segment")) {
|
||||||
|
if (i == args.length-1) {
|
||||||
|
out.println("ERROR: missing name for -segment option");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
onlySegments.add(args[i+1]);
|
||||||
|
i += 2;
|
||||||
|
} else {
|
||||||
|
if (indexPath != null) {
|
||||||
|
out.println("ERROR: unexpected extra argument '" + args[i] + "'");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
indexPath = args[i];
|
||||||
|
i++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.length != (doFix ? 2:1)) {
|
if (indexPath == null) {
|
||||||
out.println("\nUsage: java org.apache.lucene.index.CheckIndex pathToIndex [-fix]\n" +
|
out.println("\nERROR: index path not specified");
|
||||||
|
out.println("\nUsage: java org.apache.lucene.index.CheckIndex pathToIndex [-fix] [-segment X] [-segment Y]\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
" -fix: actually write a new segments_N file, removing any problematic segments\n" +
|
" -fix: actually write a new segments_N file, removing any problematic segments\n" +
|
||||||
|
" -segment X: only check the specified segments. This can be specified multiple\n" +
|
||||||
|
" times, to check more than one segment, eg '-segment _2 -segment _a'.\n" +
|
||||||
|
" You can't use this with the -fix option\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"**WARNING**: -fix should only be used on an emergency basis as it will cause\n" +
|
"**WARNING**: -fix should only be used on an emergency basis as it will cause\n" +
|
||||||
"documents (perhaps many) to be permanently removed from the index. Always make\n" +
|
"documents (perhaps many) to be permanently removed from the index. Always make\n" +
|
||||||
|
@ -348,18 +388,24 @@ public class CheckIndex {
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
final String dirName = args[0];
|
if (onlySegments.size() == 0)
|
||||||
out.println("\nOpening index @ " + dirName + "\n");
|
onlySegments = null;
|
||||||
|
else if (doFix) {
|
||||||
|
out.println("ERROR: cannot specify both -fix and -segment");
|
||||||
|
System.exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
out.println("\nOpening index @ " + indexPath + "\n");
|
||||||
Directory dir = null;
|
Directory dir = null;
|
||||||
try {
|
try {
|
||||||
dir = FSDirectory.getDirectory(dirName);
|
dir = FSDirectory.getDirectory(indexPath);
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
out.println("ERROR: could not open directory \"" + dirName + "\"; exiting");
|
out.println("ERROR: could not open directory \"" + indexPath + "\"; exiting");
|
||||||
t.printStackTrace(out);
|
t.printStackTrace(out);
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean isClean = check(dir, doFix);
|
boolean isClean = check(dir, doFix, onlySegments);
|
||||||
|
|
||||||
final int exitCode;
|
final int exitCode;
|
||||||
if (isClean)
|
if (isClean)
|
||||||
|
|
|
@ -20,6 +20,8 @@ package org.apache.lucene.index;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
import org.apache.lucene.util.LuceneTestCase;
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
import org.apache.lucene.store.MockRAMDirectory;
|
import org.apache.lucene.store.MockRAMDirectory;
|
||||||
|
@ -46,6 +48,9 @@ public class TestCheckIndex extends LuceneTestCase {
|
||||||
ByteArrayOutputStream bos = new ByteArrayOutputStream(1024);
|
ByteArrayOutputStream bos = new ByteArrayOutputStream(1024);
|
||||||
|
|
||||||
CheckIndex.out = new PrintStream(bos);
|
CheckIndex.out = new PrintStream(bos);
|
||||||
assertTrue(CheckIndex.check(dir, false));
|
assertTrue(CheckIndex.check(dir, false, null));
|
||||||
|
final List onlySegments = new ArrayList();
|
||||||
|
onlySegments.add("_0");
|
||||||
|
assertTrue(CheckIndex.check(dir, false, onlySegments));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue