mirror of
https://github.com/apache/lucene.git
synced 2025-02-27 21:09:19 +00:00
scale back DirectUpdateHandlerOptimizeTest by a factor of 10
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@680841 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5bb355297a
commit
909aab1576
@ -49,8 +49,8 @@ public class DirectUpdateHandlerOptimizeTest extends AbstractSolrTestCase {
|
||||
cmd.overwritePending = true;
|
||||
cmd.allowDups = false;
|
||||
//add just under the merge factor, so no segments are merged
|
||||
//the merge factor is 1000 and the maxBufferedDocs is 2, so there should be 500 segments (498 segs each w/ 2 docs, and 1 segment with 1 doc)
|
||||
for (int i = 0; i < 999; i++) {
|
||||
//the merge factor is 100 and the maxBufferedDocs is 2, so there should be 50 segments
|
||||
for (int i = 0; i < 99; i++) {
|
||||
// Add a valid document
|
||||
cmd.doc = new Document();
|
||||
cmd.doc.add(new Field("id", "id_" + i, Field.Store.YES, Field.Index.UN_TOKENIZED));
|
||||
@ -63,14 +63,14 @@ public class DirectUpdateHandlerOptimizeTest extends AbstractSolrTestCase {
|
||||
updater.commit(cmtCmd); // commit twice to give systems such as windows a chance to delete the old files
|
||||
|
||||
String indexDir = core.getIndexDir();
|
||||
assertNumSegments(indexDir, 500);
|
||||
assertNumSegments(indexDir, 50);
|
||||
|
||||
//now do an optimize
|
||||
cmtCmd = new CommitUpdateCommand(true);
|
||||
cmtCmd.maxOptimizeSegments = 250;
|
||||
cmtCmd.maxOptimizeSegments = 25;
|
||||
updater.commit(cmtCmd);
|
||||
updater.commit(cmtCmd);
|
||||
assertNumSegments(indexDir, 250);
|
||||
assertNumSegments(indexDir, 25);
|
||||
|
||||
cmtCmd.maxOptimizeSegments = -1;
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user