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.1.0
pts/rocksdb-1.1.0
- 13 July 2021 -
Update against upstream RocksDB 6.22.1.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/facebook/rocksdb/archive/refs/tags/v6.22.1.tar.gz</URL> <MD5>ee47936d97117821a79bb26dadf10e9e</MD5> <SHA256>2df8f34a44eda182e22cf84dee7a14f17f55d305ff79c06fb3cd1e5f8831e00d</SHA256> <FileName>rocksdb-6.22.1.tar.gz</FileName> <FileSize>9129964</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf rocksdb-6.22.1.tar.gz cd rocksdb-6.22.1/ mkdir build cd build export CFLAGS="-O3 -march=native" export CXXFLAGS="-O3 -march=native" 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-6.22.1/build/* export CFLAGS="-O3 -march=native -Wno-error=deprecated-copy -Wno-error=pessimizing-move" export CXXFLAGS="-O3 -march=native -Wno-error=deprecated-copy -Wno-error=pessimizing-move" 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-6.22.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.4.0--> <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.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Facebook RocksDB</Title> <AppVersion>6.22.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.1.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>