[Bigdata-commit] SF.net SVN: bigdata:[3996]
branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/ build.xml
From: <mrp...@us...> - 2010-12-06 21:29:26
|
Revision: 3996 http://bigdata.svn.sourceforge.net/bigdata/?rev=3996&view=rev Author: mrpersonick Date: 2010-12-06 21:29:19 +0000 (Mon, 06 Dec 2010) Log Message: ----------- added an ant task to run the print queries helper Modified Paths: -------------- branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml Modified: branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml =================================================================== --- branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml 2010-12-06 21:28:37 UTC (rev 3995) +++ branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml 2010-12-06 21:29:19 UTC (rev 3996) @@ -1,3 +1,4 @@ + <!-- $Id: build.xml 2266 2009-10-26 18:21:50Z mrpersonick $ --> <!-- --> <!-- do "ant bundle-jar" in the parent directory first. --> @@ -246,7 +247,46 @@ </classpath> </java> </target> + + <target name="run-print-queries" depends="compile" description="Prints some sample benchmark queries to be run against the loaded data."> + <java classname="benchmark.bigdata.TestDriver" fork="true" failonerror="true" dir="${build.dir}/bin"> + <!-- -runs # is the #of query mix runs (default is 500). --> + <arg value="-runs" /> + <arg value="${bsbm.runs}" /> + <!-- -w # is the #of warmup query mixes (default is 50). --> + <arg value="-w" /> + <arg value="${bsbm.w}" /> + + <!-- -mt # is the #of concurrent clients. --> + <arg value="-mt" /> + <arg value="${bsbm.mt}" /> + + <!-- -qdir dir is the query directory (default is queries). --> + <!--<arg value="-qdir"/><arg value="src/resources/bsbm_data"/>--> + + <!-- -idir dir is the test data directory (default td_data). --> + <arg value="-idir" /> + <arg value="${bsbm.dataDir}" /> + + <!-- The randomizer seed. --> + <arg value="-seed" /> + <arg value="${bsbm.seed}" /> + + <!-- -o file is the name of the xml output file. --> + <arg value="-o" /> + <arg value="${bsbm.resultsDir}/benchmark_result_pc${bsbm.pc}_runs${bsbm.runs}_mt${bsbm.mt}.xml" /> + + <!-- The SPARQL endpoint. --> + <arg value="http://localhost:${bsbm.nanoServerPort}" /> + + <classpath> + <path refid="runtime.classpath" /> + </classpath> + </java> + </target> + + <target name="set-properties" depends="compile" description="Set or change properties for a kb instance. The new values are read from stdin."> <java classname="com.bigdata.rdf.sail.BigdataSailHelper" fork="true" failonerror="true"> <!-- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
[Bigdata-commit] SF.net SVN: bigdata:[4498]
branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/ build.xml
From: <tho...@us...> - 2011-05-15 17:44:55
|
Revision: 4498 http://bigdata.svn.sourceforge.net/bigdata/?rev=4498&view=rev Author: thompsonbry Date: 2011-05-15 17:44:49 +0000 (Sun, 15 May 2011) Log Message: ----------- Removed reference to the older version of the NanoSparqlServer (in the sail.bench package). Modified Paths: -------------- branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml Modified: branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml =================================================================== --- branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml 2011-05-13 20:11:57 UTC (rev 4497) +++ branches/QUADS_QUERY_BRANCH/bigdata-perf/bsbm/build.xml 2011-05-15 17:44:49 UTC (rev 4498) @@ -156,7 +156,7 @@ </target> <target name="start-nano-qual-server" depends="compile" description="Start a small http server for the qualification data set."> - <java classname="com.bigdata.rdf.sail.bench.NanoSparqlServer" fork="true" failonerror="true" dir="${build.dir}/bin"> + <java classname="com.bigdata.rdf.sail.webapp.NanoSparqlServer" fork="true" failonerror="true" dir="${build.dir}/bin"> <arg line="${bsbm.nanoServerPort} ${bsbm.qualNamespace} ${bsbm.journalPropertyFile}" /> <!-- specify/override the journal file name. --> <jvmarg line="${queryJvmArgs} -Dcom.bigdata.journal.AbstractJournal.file=${bsbm.qualJournal}" /> @@ -177,17 +177,6 @@ </java> </target> - <!-- - <target name="stop-nano-server" depends="compile" description="Stop the small http server running at the configured port (either qualification or normal trials)."> - <java classname="com.bigdata.rdf.sail.bench.NanoSparqlServer" fork="true" failonerror="true" dir="${build.dir}/bin"> - <arg line="${bsbm.nanoServerPort} -stop" /> - <classpath> - <path refid="runtime.classpath" /> - </classpath> - </java> - </target> - --> - <target name="rampup" depends="compile" description="Runs the benchmark queries against the loaded data until system performance reaches a steady state as defined by the benchmark."> <java classname="benchmark.testdriver.TestDriver" fork="true" failonerror="true" dir="${build.dir}/bin"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |