Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.6 KiB
28 lines
1.6 KiB
#!/usr/bin/env bash
|
|
|
|
DATASET_SIZE=100000 # number of products in the dataset. There is around 350 triples generated by product.
|
|
PARALLELISM=16
|
|
VERSION="4.3.2"
|
|
|
|
set -eu
|
|
wget -nc https://downloads.apache.org/jena/binaries/apache-jena-${VERSION}.zip
|
|
cd bsbm-tools || exit
|
|
./generate -fc -pc ${DATASET_SIZE} -s nt -fn "explore-${DATASET_SIZE}" -ud -ufn "explore-update-${DATASET_SIZE}"
|
|
unzip ../"apache-jena-${VERSION}.zip"
|
|
./apache-jena-${VERSION}/bin/tdb2.tdbloader --loader=parallel --loc=td_data "explore-${DATASET_SIZE}.nt"
|
|
wget https://downloads.apache.org/jena/binaries/apache-jena-fuseki-${VERSION}.zip
|
|
unzip apache-jena-fuseki-${VERSION}.zip
|
|
rm apache-jena-fuseki-${VERSION}.zip
|
|
echo "rootLogger.level = ERROR" > ./apache-jena-fuseki-${VERSION}/log4j2.properties
|
|
./apache-jena-fuseki-${VERSION}/fuseki-server --tdb2 --loc=td_data --update /bsbm &
|
|
sleep 10
|
|
./testdriver -mt ${PARALLELISM} -ucf usecases/explore/sparql.txt -o "../bsbm.explore.jena.${VERSION}.${DATASET_SIZE}.${PARALLELISM}.xml" http://localhost:3030/bsbm/query
|
|
./testdriver -mt ${PARALLELISM} -ucf usecases/exploreAndUpdate/sparql.txt -o "../bsbm.exploreAndUpdate.jena.${VERSION}.${DATASET_SIZE}.${PARALLELISM}.xml" http://localhost:3030/bsbm/query -u http://localhost:3030/bsbm/update -udataset "explore-update-${DATASET_SIZE}.nt"
|
|
#./testdriver -mt ${PARALLELISM} -ucf usecases/businessIntelligence/sparql.txt -o "../bsbm.businessIntelligence.jena.${VERSION}.${DATASET_SIZE}.${PARALLELISM}.xml" http://localhost:3030/bsbm/query
|
|
kill $!
|
|
rm -f "explore-${DATASET_SIZE}.nt"
|
|
rm -f "explore-update-${DATASET_SIZE}.nt"
|
|
rm -rf td_data
|
|
rm -rf run
|
|
rm -rf apache-jena-${VERSION}
|
|
rm -rf apache-jena-fuseki-${VERSION}
|
|
|