Old Release

This documentation covers an old version of Fedora. Looking for another version? See all documentation.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The initial dataset to load into the repository before testing proper begins.

 

ParameterSuggested valuesNotes
Number of objects10,000 
Average number of datastreams per object1 
Standard deviation of datastreams per object0 
Average size of datastream1024 
Standard deviation of datastream size0 
Average number of properties per noden/ano properties set
Standard deviation of properties per noden/a 
Is datastream data random?Yes 

 

BenchToolFC3 Script for Fedora 3

#!/bin/sh

REPO=http://localhost:8983/fedora
BATCHES=100
OBJ=100
DS=1024

N=0
while [ $N -lt $BATCHES ]; do
   N=$(( $N + 1 ))
   echo "$N ================================================================"
   java -cp target/bench-tool-0.0.1-SNAPSHOT-jar-with-dependencies.jar org.fcrepo.bench.BenchToolFC3 $REPO fedoraAdmin fedoraAdmin $OBJ $DS
done

BenchToolFC4 Script for Fedora 4

#!/bin/sh

REPO=http://localhost:8080
BATCHES=100
OBJ=100
DS=1024
THREADS=1

N=0
while [ $N -lt $BATCHES ]; do
   N=$(( $N + 1 ))
   echo "$N ================================================================"
   java -cp target/bench-tool-0.0.1-SNAPSHOT-jar-with-dependencies.jar org.fcrepo.bench.BenchToolFC4 $REPO $OBJ $DS $THREADS
done
  • No labels