mirror of https://github.com/apache/lucene.git
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:
parent
ff27795666
commit
3e8f55cd0d
|
@ -2,6 +2,10 @@ Lucene Benchmark Contrib Change Log
|
|||
|
||||
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
|
||||
The locally built patched version of the Xerces-J jar introduced
|
||||
as part of LUCENE-1591 is no longer required, because Xerces
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -514,6 +514,7 @@ public class TestPerfTasksLogic extends BenchmarkTestCase {
|
|||
"{ [ AddDoc]: 4} : * ",
|
||||
"ResetInputs ",
|
||||
"{ [ AddDoc]: 4} : * ",
|
||||
"WaitForMerges",
|
||||
"CloseIndex",
|
||||
};
|
||||
|
||||
|
@ -549,6 +550,7 @@ public class TestPerfTasksLogic extends BenchmarkTestCase {
|
|||
" ResetSystemErase",
|
||||
" CreateIndex",
|
||||
" { \"AddDocs\" AddDoc > : * ",
|
||||
" WaitForMerges",
|
||||
" CloseIndex",
|
||||
"} : 2",
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue