mirror of https://github.com/apache/lucene.git
LUCENE-979: remove a few more old benchmark things
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@784568 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e3c4ff8ac3
commit
6671c43458
|
@ -115,23 +115,6 @@
|
|||
<pathelement location="${benchmark.ext.classpath}"/>
|
||||
</path>
|
||||
|
||||
<target name="run-standard" depends="compile,check-files,get-files" description="Run the standard baseline">
|
||||
<echo>Working Directory: ${working.dir}</echo>
|
||||
<java classname="org.apache.lucene.benchmark.Driver" maxmemory="1024M" fork="true">
|
||||
<classpath refid="run.classpath"/>
|
||||
<arg file="${working.dir}"/>
|
||||
<arg file="conf/standard-config.xml"/>
|
||||
</java>
|
||||
</target>
|
||||
<target name="run-micro-standard" depends="compile,check-files,get-files" description="Run the standard baseline">
|
||||
<echo>Working Directory: ${working.dir}</echo>
|
||||
<java classname="org.apache.lucene.benchmark.Driver" maxmemory="1024M" fork="true">
|
||||
<classpath refid="run.classpath"/>
|
||||
<arg file="${working.dir}"/>
|
||||
<arg file="conf/micro-standard-config.xml"/>
|
||||
</java>
|
||||
</target>
|
||||
|
||||
<property name="task.alg" location="conf/micro-standard.alg"/>
|
||||
<property name="task.mem" value="140M"/>
|
||||
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
Configuration file for use with Driver(InputSource) constructor. Uses Digester to load.
|
||||
|
||||
Class is the fully qualified name of the Benchmarker to load. It must have a no argument constructor. All attributes invoke the appropriate bean accessor on the Benchmarker -->
|
||||
<benchmark >
|
||||
<benchmarker class="org.apache.lucene.benchmark.standard.StandardBenchmarker"/>
|
||||
<!-- Attributes map to bean getters/setters on the specific instantiation of StandardOptions. So, if you implement your own options, then you can
|
||||
initialize automatically by setting the bean attributes here.
|
||||
|
||||
All attributes are optional:
|
||||
|
||||
runCount - The number of times to run the benchmark successively. Default: 5
|
||||
logStep - When indexing, how often to output how many documents have been processed. Default: 1000
|
||||
scaleUp - How many times to add the same documents. Default: 5
|
||||
maximumDocumentsToIndex - The number of documents to index at a time (multiply by the scaleUp factor for the total number of documents indexed). Default is Integer.MAX_VALUE
|
||||
-->
|
||||
<options class="org.apache.lucene.benchmark.standard.StandardOptions" runCount="1" logStep="500" scaleUp="1" maximumDocumentsToIndex="2000"/>
|
||||
</benchmark>
|
|
@ -1,19 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<!--
|
||||
Configuration file for use with Driver(InputSource) constructor. Uses Digester to load.
|
||||
|
||||
Class is the fully qualified name of the Benchmarker to load. It must have a no argument constructor. All attributes invoke the appropriate bean accessor on the Benchmarker -->
|
||||
<benchmark >
|
||||
<benchmarker class="org.apache.lucene.benchmark.standard.StandardBenchmarker"/>
|
||||
<!-- Attributes map to bean getters/setters on the specific instantiation of StandardOptions. So, if you implement your own options, then you can
|
||||
initialize automatically by setting the bean attributes here.
|
||||
|
||||
All attributes are optional.
|
||||
|
||||
runCount - The number of times to run the benchmark successively. Default: 5
|
||||
logStep - When indexing, how often to output how many documents have been processed. Default: 1000
|
||||
scaleUp - How many times to add the same documents. Default: 5
|
||||
maximumDocumentsToIndex - The number of documents to index at a time (multiply by the scaleUp factor for the total number of documents indexed). Default is Integer.MAX_VALUE
|
||||
-->
|
||||
<options class="org.apache.lucene.benchmark.standard.StandardOptions" runCount="5" logStep="1000" scaleUp="5"/>
|
||||
</benchmark>
|
Loading…
Reference in New Issue