Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
x265
FFmpeg
Newest Tests
LiteRT
WarpX
Epoch
Valkey
Whisperfile
XNNPACK
Recently Updated Tests
ASTC Encoder
SVT-AV1
Unvanquished
Primesieve
XNNPACK
oneDNN
New & Recently Updated Tests
Recently Updated Suites
Database Test Suite
Machine Learning
Steam
New & Recently Updated Suites
Component Benchmarks
CPUs / Processors
GPUs / Graphics
OpenGL
Disks / Storage
Motherboards
File-Systems
Operating Systems
OpenBenchmarking.org
Corporate / Organization Info
Bug Reports / Feature Requests
Facebook RocksDB 1.2.0
pts/rocksdb-1.2.0
- 12 March 2022 -
Update against RocksDB 7.0.1 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/facebook/rocksdb/archive/refs/tags/v7.0.1.tar.gz</URL> <MD5>2fcd33fa0cf1433072e9483c233739ba</MD5> <SHA256>f1547be4dd76ca30d74e8d1377b893d36ecb7b526ffd835638ad34feb79be174</SHA256> <FileName>rocksdb-7.0.1.tar.gz</FileName> <FileSize>9501192</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf rocksdb-7.0.1.tar.gz cd rocksdb-7.0.1 mkdir build cd build export CFLAGS="-O3 -march=native $CFLAGS" export CXXFLAGS="-O3 -march=native $CXXFLAGS" cmake -DCMAKE_BUILD_TYPE=Release -DWITH_SNAPPY=ON .. make -j $NUM_CPU_CORES make db_bench echo $? > ~/install-exit-status if [[ ! -x db_bench ]] then # Unfortunately older GCC will emit error from these no-error echo "TRYING AGAIN WITH NO-ERROR BITS" rm -rf ~/rocksdb-7.0.1/build/* export CFLAGS="-O3 -march=native -Wno-error=deprecated-copy -Wno-error=pessimizing-move $CFLAGS" export CXXFLAGS="-O3 -march=native -Wno-error=deprecated-copy -Wno-error=pessimizing-move $CXXFLAGS" cmake -DCMAKE_BUILD_TYPE=Release -DWITH_SNAPPY=ON .. make -j $NUM_CPU_CORES make db_bench echo $? > ~/install-exit-status fi cd ~ echo "#!/bin/bash rm -rf /tmp/rocksdbtest-1000/dbbench/ cd rocksdb-7.0.1/build/ ./db_bench \$@ --threads \$NUM_CPU_CORES --duration 60 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status " > rocksdb chmod +x rocksdb
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>readrandom : 0.336 micros/op #_RESULT_# ops/sec; (0 of 175049999 found)</OutputTemplate> <LineHint> ops/sec</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.2--> <PhoronixTestSuite> <TestInformation> <Title>Facebook RocksDB</Title> <AppVersion>7.0.1</AppVersion> <Description>This is a benchmark of Facebook's RocksDB as an embeddable persistent key-value store for fast storage based on Google's LevelDB.</Description> <ResultScale>Op/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, bc, gflags, cmake, snappy</ExternalDependencies> <EnvironmentSize>740</EnvironmentSize> <ProjectURL>https://rocksdb.org/</ProjectURL> <RepositoryURL>https://github.com/facebook/rocksdb</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <Menu> <Entry> <Name>Sequential Fill</Name> <Value>--benchmarks="fillseq"</Value> </Entry> <Entry> <Name>Random Fill</Name> <Value>--benchmarks="fillrandom"</Value> </Entry> <Entry> <Name>Random Fill Sync</Name> <Value>--benchmarks="fillsync"</Value> </Entry> <Entry> <Name>Random Read</Name> <Value>--benchmarks="readrandom"</Value> </Entry> <Entry> <Name>Read While Writing</Name> <Value>--benchmarks="readwhilewriting"</Value> </Entry> <Entry> <Name>Read Random Write Random</Name> <Value>--benchmarks="readrandomwriterandom"</Value> </Entry> <Entry> <Name>Update Random</Name> <Value>--benchmarks="updaterandom"</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>