You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by pr...@apache.org on 2014/10/06 23:21:36 UTC

git commit: Removed unused jar.

Repository: vxquery
Updated Branches:
  refs/heads/prestonc/exrt_benchmark_queries 2dec6dbf5 -> 6ef2cf9b6


Removed unused jar.


Project: http://git-wip-us.apache.org/repos/asf/vxquery/repo
Commit: http://git-wip-us.apache.org/repos/asf/vxquery/commit/6ef2cf9b
Tree: http://git-wip-us.apache.org/repos/asf/vxquery/tree/6ef2cf9b
Diff: http://git-wip-us.apache.org/repos/asf/vxquery/diff/6ef2cf9b

Branch: refs/heads/prestonc/exrt_benchmark_queries
Commit: 6ef2cf9b6de14269a167f1996f3cb0151b3bbc28
Parents: 2dec6db
Author: Preston Carman <pr...@apache.org>
Authored: Fri Oct 3 13:04:21 2014 -0700
Committer: Preston Carman <pr...@apache.org>
Committed: Fri Oct 3 13:04:21 2014 -0700

----------------------------------------------------------------------
 .../other_systems/saxon/saxon9he.jar            | Bin 10290812 -> 0 bytes
 .../saxon_scripts/run_saxon_tests.sh            |  13 +++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/vxquery/blob/6ef2cf9b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon/saxon9he.jar
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon/saxon9he.jar b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon/saxon9he.jar
deleted file mode 100644
index 1557983..0000000
Binary files a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon/saxon9he.jar and /dev/null differ

http://git-wip-us.apache.org/repos/asf/vxquery/blob/6ef2cf9b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon_scripts/run_saxon_tests.sh
----------------------------------------------------------------------
diff --git a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon_scripts/run_saxon_tests.sh b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon_scripts/run_saxon_tests.sh
index 831f424..c1c2132 100755
--- a/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon_scripts/run_saxon_tests.sh
+++ b/vxquery-benchmark/src/main/resources/noaa-ghcn-daily/other_systems/saxon_scripts/run_saxon_tests.sh
@@ -17,26 +17,27 @@
 # limitations under the License.
 #
 
-NODES=${2}
 REPEAT=${3}
 DATASET="hcn"
 
 
-for j in $(find ${1} -name '*q??.mrql')
+mkdir -p ~/logs/saxon/
+
+for j in $(find ${1} -name '*q??.xq')
 do
     date
-    echo "Running MRQL query: ${j}"
-    time for i in {1..${REPEAT}}; do ~/mrql/incubator-mrql/bin/mrql -dist -nodes ${NODES} ${j} >> ~/disk1/weather_data/mrql/query_logs/$(basename "${j}").log 2>&1; done; 
+    echo "Running Saxon query: ${j}"
+time for i in {1..${REPEAT}}; do JAVA_OPTS="-Xmx8g" java -cp saxon9he.jar net.sf.saxon.Query -t -repeat:${REPEAT} -q:${j} >> ~/logs/saxon/$(basename "${j}").log 2>&1; done; 
 done
 
 
 if which programname >/dev/null;
 then
     echo "Sending out e-mail notification."
-    SUBJECT="MRQL Tests Finished (${DATASET})"
+    SUBJECT="Saxon Tests Finished (${DATASET})"
     EMAIL="ecarm002@ucr.edu"
     /bin/mail -s "${SUBJECT}" "${EMAIL}" <<EOM
-    Completed all MRQL tests on ${DATASET}.
+    Completed all Saxon tests on ${DATASET}.
     EOM
 else
     echo "No mail command to use."