mirror of https://github.com/apache/lucene.git
LUCENE-1044: revert the doSync option to FSDirectory
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@602165 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9d35e30330
commit
b0d2b1c90e
15
CHANGES.txt
15
CHANGES.txt
|
@ -218,30 +218,23 @@ New features
|
||||||
support doubles and longs. Added support into SortField for sorting
|
support doubles and longs. Added support into SortField for sorting
|
||||||
on doubles and longs as well. (Grant Ingersoll)
|
on doubles and longs as well. (Grant Ingersoll)
|
||||||
|
|
||||||
7. LUCENE-1044: Added optional doSync boolean to
|
7. LUCENE-1020: Created basic index checking & repair tool
|
||||||
FSDirectory.getDirectory(...). If true (the default) then we will
|
|
||||||
always sync() a file before closing it, which improves the
|
|
||||||
likelihood that the index will remain consistent when the OS or
|
|
||||||
machine crashes, or power to the machine is cut. (Venkat Rangan
|
|
||||||
via Mike McCandless)
|
|
||||||
|
|
||||||
8. LUCENE-1020: Created basic index checking & repair tool
|
|
||||||
(o.a.l.index.CheckIndex). When run without -fix it does a
|
(o.a.l.index.CheckIndex). When run without -fix it does a
|
||||||
detailed test of all segments in the index and reports summary
|
detailed test of all segments in the index and reports summary
|
||||||
information and any errors it hit. With -fix it will remove
|
information and any errors it hit. With -fix it will remove
|
||||||
segments that had errors. (Mike McCandless)
|
segments that had errors. (Mike McCandless)
|
||||||
|
|
||||||
9. LUCENE-743: Add IndexReader.reopen() method that re-opens an
|
8. LUCENE-743: Add IndexReader.reopen() method that re-opens an
|
||||||
existing IndexReader by only loading those portions of an index
|
existing IndexReader by only loading those portions of an index
|
||||||
that have changed since the reader was (re)opened. reopen() can
|
that have changed since the reader was (re)opened. reopen() can
|
||||||
be significantly faster than open(), depending on the amount of
|
be significantly faster than open(), depending on the amount of
|
||||||
index changes. SegmentReader, MultiSegmentReader, MultiReader,
|
index changes. SegmentReader, MultiSegmentReader, MultiReader,
|
||||||
and ParallelReader implement reopen(). (Michael Busch)
|
and ParallelReader implement reopen(). (Michael Busch)
|
||||||
|
|
||||||
10. LUCENE-1040: CharArraySet useful for efficiently checking
|
9. LUCENE-1040: CharArraySet useful for efficiently checking
|
||||||
set membership of text specified by char[]. (yonik)
|
set membership of text specified by char[]. (yonik)
|
||||||
|
|
||||||
11. LUCENE-1073: Created SnapshotDeletionPolicy to facilitate taking a
|
10. LUCENE-1073: Created SnapshotDeletionPolicy to facilitate taking a
|
||||||
live backup of an index without pausing indexing. (Mike
|
live backup of an index without pausing indexing. (Mike
|
||||||
McCandless)
|
McCandless)
|
||||||
|
|
||||||
|
|
|
@ -126,8 +126,7 @@ public class PerfRunData {
|
||||||
FileUtils.fullyDelete(indexDir);
|
FileUtils.fullyDelete(indexDir);
|
||||||
}
|
}
|
||||||
indexDir.mkdirs();
|
indexDir.mkdirs();
|
||||||
final boolean doSync = config.get("fsdirectory.dosync", false);
|
directory = FSDirectory.getDirectory(indexDir);
|
||||||
directory = FSDirectory.getDirectory(indexDir, null, doSync);
|
|
||||||
} else {
|
} else {
|
||||||
directory = new RAMDirectory();
|
directory = new RAMDirectory();
|
||||||
}
|
}
|
||||||
|
|
|
@ -478,12 +478,6 @@ Some of the currently defined properties are:
|
||||||
This tells which directory to use for the performance test.
|
This tells which directory to use for the performance test.
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
|
||||||
<font color="#FF0066">fsdirectory.dosync</font> - true/false
|
|
||||||
If "true", the FSDirectory will call sync() before close() on each
|
|
||||||
file.
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<b>Index work parameters</b>:
|
<b>Index work parameters</b>:
|
||||||
Multi int/boolean values would be iterated with calls to NewRound.
|
Multi int/boolean values would be iterated with calls to NewRound.
|
||||||
|
@ -549,7 +543,6 @@ Here is a list of currently defined properties:
|
||||||
</li><li>merge.factor
|
</li><li>merge.factor
|
||||||
</li><li>max.buffered
|
</li><li>max.buffered
|
||||||
</li><li>directory
|
</li><li>directory
|
||||||
</li><li>fsdirectory.dosync
|
|
||||||
</li><li>ram.flush.mb
|
</li><li>ram.flush.mb
|
||||||
</li><li>autocommit
|
</li><li>autocommit
|
||||||
</li></ul>
|
</li></ul>
|
||||||
|
|
|
@ -62,14 +62,6 @@ public class FSDirectory extends Directory {
|
||||||
|
|
||||||
private static boolean disableLocks = false;
|
private static boolean disableLocks = false;
|
||||||
|
|
||||||
private static boolean DEFAULT_DO_SYNC = false;
|
|
||||||
|
|
||||||
// True if we should call sync() before closing a file.
|
|
||||||
// This improves chances that index will still be
|
|
||||||
// consistent if the machine or OS abruptly crashes. See
|
|
||||||
// LUCENE-1044.
|
|
||||||
private boolean doSync = DEFAULT_DO_SYNC;
|
|
||||||
|
|
||||||
// TODO: should this move up to the Directory base class? Also: should we
|
// TODO: should this move up to the Directory base class? Also: should we
|
||||||
// make a per-instance (in addition to the static "default") version?
|
// make a per-instance (in addition to the static "default") version?
|
||||||
|
|
||||||
|
@ -144,34 +136,17 @@ public class FSDirectory extends Directory {
|
||||||
* @return the FSDirectory for the named file. */
|
* @return the FSDirectory for the named file. */
|
||||||
public static FSDirectory getDirectory(String path)
|
public static FSDirectory getDirectory(String path)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return getDirectory(new File(path), null, DEFAULT_DO_SYNC);
|
return getDirectory(new File(path), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the directory instance for the named location.
|
/** Returns the directory instance for the named location.
|
||||||
* @param path the path to the directory.
|
* @param path the path to the directory.
|
||||||
* @param lockFactory instance of {@link LockFactory} providing the
|
* @param lockFactory instance of {@link LockFactory} providing the
|
||||||
* locking implementation. If null, the default
|
* locking implementation.
|
||||||
* {@link SimpleFSLockFactory} is used.
|
|
||||||
* @return the FSDirectory for the named file. */
|
* @return the FSDirectory for the named file. */
|
||||||
public static FSDirectory getDirectory(String path, LockFactory lockFactory)
|
public static FSDirectory getDirectory(String path, LockFactory lockFactory)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return getDirectory(new File(path), lockFactory, DEFAULT_DO_SYNC);
|
return getDirectory(new File(path), lockFactory);
|
||||||
}
|
|
||||||
|
|
||||||
/** Returns the directory instance for the named location.
|
|
||||||
* @param path the path to the directory.
|
|
||||||
* @param lockFactory instance of {@link LockFactory} providing the
|
|
||||||
* locking implementation. If null, the default
|
|
||||||
* {@link SimpleFSLockFactory} is used.
|
|
||||||
* @param doSync if true (the default), sync() is called
|
|
||||||
* on all file descriptors before close(). This
|
|
||||||
* improves the likelihood that the index will
|
|
||||||
* remain consistent when the OS or machine crashes
|
|
||||||
* or the power cord is pulled.
|
|
||||||
* @return the FSDirectory for the named file. */
|
|
||||||
public static FSDirectory getDirectory(String path, LockFactory lockFactory, boolean doSync)
|
|
||||||
throws IOException {
|
|
||||||
return getDirectory(new File(path), lockFactory, doSync);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the directory instance for the named location.
|
/** Returns the directory instance for the named location.
|
||||||
|
@ -179,32 +154,15 @@ public class FSDirectory extends Directory {
|
||||||
* @return the FSDirectory for the named file. */
|
* @return the FSDirectory for the named file. */
|
||||||
public static FSDirectory getDirectory(File file)
|
public static FSDirectory getDirectory(File file)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return getDirectory(file, null, DEFAULT_DO_SYNC);
|
return getDirectory(file, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the directory instance for the named location.
|
/** Returns the directory instance for the named location.
|
||||||
* @param file the path to the directory.
|
* @param file the path to the directory.
|
||||||
* @param lockFactory instance of {@link LockFactory} providing the
|
* @param lockFactory instance of {@link LockFactory} providing the
|
||||||
* locking implementation. If null, the default
|
* locking implementation.
|
||||||
* {@link SimpleFSLockFactory} is used.
|
|
||||||
* @return the FSDirectory for the named file. */
|
* @return the FSDirectory for the named file. */
|
||||||
public static FSDirectory getDirectory(File file, LockFactory lockFactory)
|
public static FSDirectory getDirectory(File file, LockFactory lockFactory)
|
||||||
throws IOException {
|
|
||||||
return getDirectory(file, lockFactory, DEFAULT_DO_SYNC);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Returns the directory instance for the named location.
|
|
||||||
* @param file the path to the directory.
|
|
||||||
* @param lockFactory instance of {@link LockFactory} providing the
|
|
||||||
* locking implementation. If null, the default
|
|
||||||
* {@link SimpleFSLockFactory} is used.
|
|
||||||
* @param doSync if true (the default), sync() is called
|
|
||||||
* on all file descriptors before close(). This
|
|
||||||
* improves the likelihood that the index will
|
|
||||||
* remain consistent when the OS or machine crashes
|
|
||||||
* or the power cord is pulled.
|
|
||||||
* @return the FSDirectory for the named file. */
|
|
||||||
public static FSDirectory getDirectory(File file, LockFactory lockFactory, boolean doSync)
|
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
file = new File(file.getCanonicalPath());
|
file = new File(file.getCanonicalPath());
|
||||||
|
@ -225,7 +183,7 @@ public class FSDirectory extends Directory {
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new RuntimeException("cannot load FSDirectory class: " + e.toString(), e);
|
throw new RuntimeException("cannot load FSDirectory class: " + e.toString(), e);
|
||||||
}
|
}
|
||||||
dir.init(file, lockFactory, doSync);
|
dir.init(file, lockFactory);
|
||||||
DIRECTORIES.put(file, dir);
|
DIRECTORIES.put(file, dir);
|
||||||
} else {
|
} else {
|
||||||
// Catch the case where a Directory is pulled from the cache, but has a
|
// Catch the case where a Directory is pulled from the cache, but has a
|
||||||
|
@ -296,7 +254,7 @@ public class FSDirectory extends Directory {
|
||||||
|
|
||||||
protected FSDirectory() {}; // permit subclassing
|
protected FSDirectory() {}; // permit subclassing
|
||||||
|
|
||||||
private void init(File path, LockFactory lockFactory, boolean doSync) throws IOException {
|
private void init(File path, LockFactory lockFactory) throws IOException {
|
||||||
|
|
||||||
// Set up lockFactory with cascaded defaults: if an instance was passed in,
|
// Set up lockFactory with cascaded defaults: if an instance was passed in,
|
||||||
// use that; else if locks are disabled, use NoLockFactory; else if the
|
// use that; else if locks are disabled, use NoLockFactory; else if the
|
||||||
|
@ -304,7 +262,6 @@ public class FSDirectory extends Directory {
|
||||||
// instantiate that; else, use SimpleFSLockFactory:
|
// instantiate that; else, use SimpleFSLockFactory:
|
||||||
|
|
||||||
directory = path;
|
directory = path;
|
||||||
this.doSync = doSync;
|
|
||||||
|
|
||||||
boolean doClearLockID = false;
|
boolean doClearLockID = false;
|
||||||
|
|
||||||
|
@ -475,7 +432,7 @@ public class FSDirectory extends Directory {
|
||||||
if (file.exists() && !file.delete()) // delete existing, if any
|
if (file.exists() && !file.delete()) // delete existing, if any
|
||||||
throw new IOException("Cannot overwrite: " + file);
|
throw new IOException("Cannot overwrite: " + file);
|
||||||
|
|
||||||
return new FSIndexOutput(file, doSync);
|
return new FSIndexOutput(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Inherit javadoc
|
// Inherit javadoc
|
||||||
|
@ -631,17 +588,10 @@ public class FSDirectory extends Directory {
|
||||||
// remember if the file is open, so that we don't try to close it
|
// remember if the file is open, so that we don't try to close it
|
||||||
// more than once
|
// more than once
|
||||||
private boolean isOpen;
|
private boolean isOpen;
|
||||||
private boolean doSync;
|
|
||||||
|
|
||||||
public FSIndexOutput(File path) throws IOException {
|
public FSIndexOutput(File path) throws IOException {
|
||||||
this(path, DEFAULT_DO_SYNC);
|
|
||||||
}
|
|
||||||
|
|
||||||
public FSIndexOutput(File path, boolean doSync) throws IOException {
|
|
||||||
file = new RandomAccessFile(path, "rw");
|
file = new RandomAccessFile(path, "rw");
|
||||||
|
|
||||||
isOpen = true;
|
isOpen = true;
|
||||||
this.doSync = doSync;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** output methods: */
|
/** output methods: */
|
||||||
|
@ -651,16 +601,11 @@ public class FSDirectory extends Directory {
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
// only close the file if it has not been closed yet
|
// only close the file if it has not been closed yet
|
||||||
if (isOpen) {
|
if (isOpen) {
|
||||||
try {
|
|
||||||
super.close();
|
super.close();
|
||||||
if (doSync)
|
|
||||||
file.getFD().sync();
|
|
||||||
} finally {
|
|
||||||
file.close();
|
file.close();
|
||||||
isOpen = false;
|
isOpen = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/** Random-access methods */
|
/** Random-access methods */
|
||||||
public void seek(long pos) throws IOException {
|
public void seek(long pos) throws IOException {
|
||||||
|
|
|
@ -177,7 +177,7 @@ public class TestAtomicUpdate extends LuceneTestCase {
|
||||||
// Second in an FSDirectory:
|
// Second in an FSDirectory:
|
||||||
String tempDir = System.getProperty("java.io.tmpdir");
|
String tempDir = System.getProperty("java.io.tmpdir");
|
||||||
File dirPath = new File(tempDir, "lucene.test.atomic");
|
File dirPath = new File(tempDir, "lucene.test.atomic");
|
||||||
directory = FSDirectory.getDirectory(dirPath, null, false);
|
directory = FSDirectory.getDirectory(dirPath);
|
||||||
runTest(directory);
|
runTest(directory);
|
||||||
directory.close();
|
directory.close();
|
||||||
_TestUtil.rmDir(dirPath);
|
_TestUtil.rmDir(dirPath);
|
||||||
|
|
|
@ -152,7 +152,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase
|
||||||
|
|
||||||
dirName = fullDir(dirName);
|
dirName = fullDir(dirName);
|
||||||
|
|
||||||
Directory dir = FSDirectory.getDirectory(dirName, null, false);
|
Directory dir = FSDirectory.getDirectory(dirName);
|
||||||
IndexSearcher searcher = new IndexSearcher(dir);
|
IndexSearcher searcher = new IndexSearcher(dir);
|
||||||
|
|
||||||
Hits hits = searcher.search(new TermQuery(new Term("content", "aaa")));
|
Hits hits = searcher.search(new TermQuery(new Term("content", "aaa")));
|
||||||
|
@ -172,7 +172,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase
|
||||||
|
|
||||||
dirName = fullDir(dirName);
|
dirName = fullDir(dirName);
|
||||||
|
|
||||||
Directory dir = FSDirectory.getDirectory(dirName, null, false);
|
Directory dir = FSDirectory.getDirectory(dirName);
|
||||||
|
|
||||||
// open writer
|
// open writer
|
||||||
IndexWriter writer = new IndexWriter(dir, autoCommit, new WhitespaceAnalyzer(), false);
|
IndexWriter writer = new IndexWriter(dir, autoCommit, new WhitespaceAnalyzer(), false);
|
||||||
|
@ -232,7 +232,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase
|
||||||
|
|
||||||
dirName = fullDir(dirName);
|
dirName = fullDir(dirName);
|
||||||
|
|
||||||
Directory dir = FSDirectory.getDirectory(dirName, null, false);
|
Directory dir = FSDirectory.getDirectory(dirName);
|
||||||
|
|
||||||
// make sure searching sees right # hits
|
// make sure searching sees right # hits
|
||||||
IndexSearcher searcher = new IndexSearcher(dir);
|
IndexSearcher searcher = new IndexSearcher(dir);
|
||||||
|
@ -280,7 +280,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase
|
||||||
|
|
||||||
dirName = fullDir(dirName);
|
dirName = fullDir(dirName);
|
||||||
|
|
||||||
Directory dir = FSDirectory.getDirectory(dirName, null, false);
|
Directory dir = FSDirectory.getDirectory(dirName);
|
||||||
IndexWriter writer = new IndexWriter(dir, new WhitespaceAnalyzer(), true);
|
IndexWriter writer = new IndexWriter(dir, new WhitespaceAnalyzer(), true);
|
||||||
writer.setUseCompoundFile(doCFS);
|
writer.setUseCompoundFile(doCFS);
|
||||||
|
|
||||||
|
@ -311,7 +311,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase
|
||||||
rmDir(outputDir);
|
rmDir(outputDir);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Directory dir = FSDirectory.getDirectory(fullDir(outputDir), null, false);
|
Directory dir = FSDirectory.getDirectory(fullDir(outputDir));
|
||||||
|
|
||||||
boolean autoCommit = 0 == pass;
|
boolean autoCommit = 0 == pass;
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class TestCompoundFile extends LuceneTestCase
|
||||||
super.setUp();
|
super.setUp();
|
||||||
File file = new File(System.getProperty("tempDir"), "testIndex");
|
File file = new File(System.getProperty("tempDir"), "testIndex");
|
||||||
_TestUtil.rmDir(file);
|
_TestUtil.rmDir(file);
|
||||||
dir = FSDirectory.getDirectory(file, null, false);
|
dir = FSDirectory.getDirectory(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ public class TestIndexModifier extends LuceneTestCase {
|
||||||
if (tempDir == null)
|
if (tempDir == null)
|
||||||
throw new IOException("java.io.tmpdir undefined, cannot run test");
|
throw new IOException("java.io.tmpdir undefined, cannot run test");
|
||||||
File indexDir = new File(tempDir, "lucenetestindex");
|
File indexDir = new File(tempDir, "lucenetestindex");
|
||||||
Directory rd = FSDirectory.getDirectory(indexDir, null, false);
|
Directory rd = FSDirectory.getDirectory(indexDir);
|
||||||
IndexThread.id = 0;
|
IndexThread.id = 0;
|
||||||
IndexThread.idStack.clear();
|
IndexThread.idStack.clear();
|
||||||
IndexModifier index = new IndexModifier(rd, new StandardAnalyzer(), create);
|
IndexModifier index = new IndexModifier(rd, new StandardAnalyzer(), create);
|
||||||
|
|
|
@ -81,7 +81,7 @@ public class TestNorms extends LuceneTestCase {
|
||||||
|
|
||||||
// test with a single index: index1
|
// test with a single index: index1
|
||||||
File indexDir1 = new File(tempDir, "lucenetestindex1");
|
File indexDir1 = new File(tempDir, "lucenetestindex1");
|
||||||
Directory dir1 = FSDirectory.getDirectory(indexDir1, null, false);
|
Directory dir1 = FSDirectory.getDirectory(indexDir1);
|
||||||
|
|
||||||
norms = new ArrayList();
|
norms = new ArrayList();
|
||||||
modifiedNorms = new ArrayList();
|
modifiedNorms = new ArrayList();
|
||||||
|
@ -99,14 +99,14 @@ public class TestNorms extends LuceneTestCase {
|
||||||
numDocNorms = 0;
|
numDocNorms = 0;
|
||||||
|
|
||||||
File indexDir2 = new File(tempDir, "lucenetestindex2");
|
File indexDir2 = new File(tempDir, "lucenetestindex2");
|
||||||
Directory dir2 = FSDirectory.getDirectory(indexDir2, null, false);
|
Directory dir2 = FSDirectory.getDirectory(indexDir2);
|
||||||
|
|
||||||
createIndex(dir2);
|
createIndex(dir2);
|
||||||
doTestNorms(dir2);
|
doTestNorms(dir2);
|
||||||
|
|
||||||
// add index1 and index2 to a third index: index3
|
// add index1 and index2 to a third index: index3
|
||||||
File indexDir3 = new File(tempDir, "lucenetestindex3");
|
File indexDir3 = new File(tempDir, "lucenetestindex3");
|
||||||
Directory dir3 = FSDirectory.getDirectory(indexDir3, null, false);
|
Directory dir3 = FSDirectory.getDirectory(indexDir3);
|
||||||
|
|
||||||
createIndex(dir3);
|
createIndex(dir3);
|
||||||
IndexWriter iw = new IndexWriter(dir3,anlzr,false);
|
IndexWriter iw = new IndexWriter(dir3,anlzr,false);
|
||||||
|
|
|
@ -178,7 +178,7 @@ public class TestStressIndexing extends LuceneTestCase {
|
||||||
// FSDir
|
// FSDir
|
||||||
String tempDir = System.getProperty("java.io.tmpdir");
|
String tempDir = System.getProperty("java.io.tmpdir");
|
||||||
File dirPath = new File(tempDir, "lucene.test.stress");
|
File dirPath = new File(tempDir, "lucene.test.stress");
|
||||||
directory = FSDirectory.getDirectory(dirPath, null, false);
|
directory = FSDirectory.getDirectory(dirPath);
|
||||||
runStressTest(directory, true, null);
|
runStressTest(directory, true, null);
|
||||||
directory.close();
|
directory.close();
|
||||||
|
|
||||||
|
@ -188,7 +188,7 @@ public class TestStressIndexing extends LuceneTestCase {
|
||||||
directory.close();
|
directory.close();
|
||||||
|
|
||||||
// With ConcurrentMergeScheduler, in FSDir
|
// With ConcurrentMergeScheduler, in FSDir
|
||||||
directory = FSDirectory.getDirectory(dirPath, null, false);
|
directory = FSDirectory.getDirectory(dirPath);
|
||||||
runStressTest(directory, true, new ConcurrentMergeScheduler());
|
runStressTest(directory, true, new ConcurrentMergeScheduler());
|
||||||
directory.close();
|
directory.close();
|
||||||
|
|
||||||
|
@ -198,7 +198,7 @@ public class TestStressIndexing extends LuceneTestCase {
|
||||||
directory.close();
|
directory.close();
|
||||||
|
|
||||||
// With ConcurrentMergeScheduler and autoCommit=false, in FSDir
|
// With ConcurrentMergeScheduler and autoCommit=false, in FSDir
|
||||||
directory = FSDirectory.getDirectory(dirPath, null, false);
|
directory = FSDirectory.getDirectory(dirPath);
|
||||||
runStressTest(directory, false, new ConcurrentMergeScheduler());
|
runStressTest(directory, false, new ConcurrentMergeScheduler());
|
||||||
directory.close();
|
directory.close();
|
||||||
|
|
||||||
|
|
|
@ -149,7 +149,7 @@ public class TestThreadedOptimize extends LuceneTestCase {
|
||||||
throw new IOException("tempDir undefined, cannot run test");
|
throw new IOException("tempDir undefined, cannot run test");
|
||||||
|
|
||||||
String dirName = tempDir + "/luceneTestThreadedOptimize";
|
String dirName = tempDir + "/luceneTestThreadedOptimize";
|
||||||
directory = FSDirectory.getDirectory(dirName, null, false);
|
directory = FSDirectory.getDirectory(dirName);
|
||||||
runTest(directory, false, null);
|
runTest(directory, false, null);
|
||||||
runTest(directory, true, null);
|
runTest(directory, true, null);
|
||||||
runTest(directory, false, new ConcurrentMergeScheduler());
|
runTest(directory, false, new ConcurrentMergeScheduler());
|
||||||
|
|
|
@ -325,7 +325,7 @@ public class TestLockFactory extends LuceneTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void _testStressLocks(LockFactory lockFactory, String indexDirName) throws IOException {
|
public void _testStressLocks(LockFactory lockFactory, String indexDirName) throws IOException {
|
||||||
FSDirectory fs1 = FSDirectory.getDirectory(indexDirName, lockFactory, false);
|
FSDirectory fs1 = FSDirectory.getDirectory(indexDirName, lockFactory);
|
||||||
|
|
||||||
// First create a 1 doc index:
|
// First create a 1 doc index:
|
||||||
IndexWriter w = new IndexWriter(fs1, new WhitespaceAnalyzer(), true);
|
IndexWriter w = new IndexWriter(fs1, new WhitespaceAnalyzer(), true);
|
||||||
|
|
Loading…
Reference in New Issue