Explored dimensions:
- text type
- instance size (just adjust the test_case.config file for this)
- suffix array sampling density
- index implementations
Pattern selection:
We use the methodology of Ferragina et al. (Section 5.3): ,,Locate sufficient random patterns of length 5 to obtain a total of 2 to 3 million occurrences''.
-
bin: Contains the executables of the project.
build_idx_*
generates indexesquery_idx_*
executes the locate experimentsinfo_*
outputs the space breakdown of an index.pattern_random
pattern generator.
-
indexes: Contains the generated indexes.
-
pattern: Contains the generated pattern.
-
results: Contains the results of the experiments.
-
src: Contains the source code of the benchmark.
-
visualize: Contains a
R
-script which generates a report in LaTeX format.Files included in this archive from the Pizza&Chili website:
- src/run_quries_sdsl.cpp is a adapted version of the Pizza&Chili file run_queries.c .
- For the visualization you need the following software:
- R with package
tikzDevice
. You can install the package by callinginstall.packages("filehash", repos="http://cran.r-project.org")
andinstall.packages("tikzDevice", repos="http://R-Forge.R-project.org")
inR
. - Compressors xz and gzip are used to get compression baselines.
- pdflatex to generate the pdf reports.
- R with package
- The construction of the 200MB indexes requires about 1GB of RAM.
make timing
compiles the programs, downloads the 200MB Pizza&Chili test cases, builds the indexes, runs the performance tests, and generated a report located atvisualize/locate.pdf
. The raw numbers of the timings can be found in theresults/all.txt
. Indexes and temporary files are stored in the directoryindexes
andtmp
. For the 5 x 200 MB of Pizza&Chili data the project will produce about 36 GB of additional data. On my machine (MacBookPro Retina 2.6GHz Intel Core i7, 16GB 1600 Mhz DDR3, SSD) the benchmark, triggerd bymake timing
, took about 2 hours and 20 minutes (excluding the time to download the test instances). Have a look at the generated report.- All created indexes and test results can be deleted
by calling
make cleanall
.
The project contains several configuration files:
- index.config: Specify data structures' ID, sdsl-class and LaTeX-name for the report.
- test_case.config: Specify test cases's ID, path, LaTeX-name for the report, and download URL.
- sample.config: Specify samplings' ID, rate for SA, and rate for ISA.
Note that the benchmark will execute every combination of your choices.
Finally, the visualization can also be configured:
- visualize/index-filter.config: Specify which indexes should be listed in the report and which style should be used.