Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Code Block
#!/bin/sh

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

N=0
while [ $N -lt $BATCHES ]; do
   N=$(( $N + 1 ))
   echo "$N ================================================================"
   java -jar target/bench-tool-0.0.1-SNAPSHOT-jar-with-dependencies.jar -f $REPO -u fedoraAdmin -p fedoraAdmin -n $OBJ -s $DS
done

BenchToolFC4 Script for Fedora 4

Code Block
#!/bin/sh

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

N=0
while [ $N -lt $BATCHES ]; do
   N=$(( $N + 1 ))
   echo "$N ================================================================"
   java -jar target/bench-tool-0.0.1-SNAPSHOT-jar-with-dependencies.jar -f $REPO -n $OBJ -s $DS -t $THREADS
done