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.
18 lines
1.0 KiB
18 lines
1.0 KiB
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
DATASET_SIZE=100000
|
||
|
cd bsbmtools-0.2
|
||
|
./generate -fc -pc ${DATASET_SIZE} -s nt -fn "explore-${DATASET_SIZE}"
|
||
|
cp ../virtuoso-opensource/database/virtuoso.ini.sample virtuoso.ini
|
||
|
mkdir ../database
|
||
|
../virtuoso-opensource/bin/virtuoso-t -f &
|
||
|
sleep 30
|
||
|
curl -f --digest --user dba:dba -H 'Content-Type:application/n-triples' --data-binary "@explore-${DATASET_SIZE}.nt" 'http://localhost:8890/sparql-graph-crud-auth?graph-uri=urn:graph:test'
|
||
|
curl -f -H 'Content-Type:application/sparql-query' --data "SELECT (COUNT(*) AS ?c) WHERE { ?s ?p ?o }" 'http://localhost:8890/sparql?graph-uri=urn:graph:test'
|
||
|
./testdriver -ucf usecases/explore/sparql.txt -o "../bsbm.explore.virtuoso.${DATASET_SIZE}.7.2.5.xml" 'http://localhost:8890/sparql?graph-uri=urn:graph:test'
|
||
|
./testdriver -ucf usecases/businessIntelligence/sparql.txt -o "../bsbm.businessIntelligence.virtuoso.${DATASET_SIZE}.7.2.5.xml" 'http://localhost:8890/sparql?graph-uri=urn:graph:test'
|
||
|
kill $!
|
||
|
rm -r ../database
|
||
|
rm "explore-${DATASET_SIZE}.nt"
|
||
|
rm -r td_data
|