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
RocksDB 1.5.0
pts/rocksdb-1.5.0
- 18 March 2023 -
Update against RocksDB 8.0 for GCC 13 compiler compatibility.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/facebook/rocksdb/archive/refs/tags/v8.0.0.tar.gz</URL> <MD5>148458e1efd16cc235a0ddb2796313f0</MD5> <SHA256>05ff6b0e89bffdf78b5a9d6fca46cb06bde6189f5787b9eeaef0511b782c1033</SHA256> <FileName>rocksdb-8.0.0.tar.gz</FileName> <FileSize>12634178</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf rocksdb-8.0.0.tar.gz cd rocksdb-8.0.0 mkdir build cd build export CFLAGS="-O3 -march=native -Wno-error=maybe-uninitialized -Wno-error=uninitialized -Wno-error=deprecated-copy -Wno-error=pessimizing-move $CFLAGS" export CXXFLAGS="-O3 -march=native -Wno-error=maybe-uninitialized -Wno-error=uninitialized -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 cd ~ echo "#!/bin/bash rm -rf /tmp/rocksdbtest-1000/dbbench/ cd rocksdb-8.0.0/build/ ./db_bench \$@ --threads \$NUM_CPU_CORES --duration 60 > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status rm -rf /tmp/rocksdbtest-1000/dbbench/" > rocksdb chmod +x rocksdb
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <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.4--> <PhoronixTestSuite> <TestInformation> <Title>RocksDB</Title> <AppVersion>8.0</AppVersion> <Description>This is a benchmark of Meta/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.5.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>