LUCENE-2885: add WaitForMerges tasks to benchmark

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1062879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-01-24 17:00:50 +00:00
parent ff27795666
commit 3e8f55cd0d
3 changed files with 46 additions and 0 deletions

View File

@ -2,6 +2,10 @@ Lucene Benchmark Contrib Change Log
The Benchmark contrib package contains code for benchmarking Lucene in a variety of ways. The Benchmark contrib package contains code for benchmarking Lucene in a variety of ways.
01/24/2011
LUCENE-2885: Add WaitForMerges task (calls IndexWriter.waitForMerges()).
(Mike McCandless)
10/10/2010 10/10/2010
The locally built patched version of the Xerces-J jar introduced The locally built patched version of the Xerces-J jar introduced
as part of LUCENE-1591 is no longer required, because Xerces as part of LUCENE-1591 is no longer required, because Xerces

View File

@ -0,0 +1,40 @@
package org.apache.lucene.benchmark.byTask.tasks;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.util.HashMap;
import java.util.Map;
import org.apache.lucene.benchmark.byTask.PerfRunData;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexReader;
/**
* Waits for merges to finish.
*/
public class WaitForMergesTask extends PerfTask {
public WaitForMergesTask(PerfRunData runData) {
super(runData);
}
@Override
public int doLogic() throws Exception {
getRunData().getIndexWriter().waitForMerges();
return 1;
}
}

View File

@ -514,6 +514,7 @@ public class TestPerfTasksLogic extends BenchmarkTestCase {
"{ [ AddDoc]: 4} : * ", "{ [ AddDoc]: 4} : * ",
"ResetInputs ", "ResetInputs ",
"{ [ AddDoc]: 4} : * ", "{ [ AddDoc]: 4} : * ",
"WaitForMerges",
"CloseIndex", "CloseIndex",
}; };
@ -549,6 +550,7 @@ public class TestPerfTasksLogic extends BenchmarkTestCase {
" ResetSystemErase", " ResetSystemErase",
" CreateIndex", " CreateIndex",
" { \"AddDocs\" AddDoc > : * ", " { \"AddDocs\" AddDoc > : * ",
" WaitForMerges",
" CloseIndex", " CloseIndex",
"} : 2", "} : 2",
}; };