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.0.0
pts/rocksdb-1.0.0
- 08 October 2019 -
Initial commit of Facebook RocksDB benchmark.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.0.1--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://github.com/facebook/rocksdb/archive/v6.3.6.tar.gz</URL> <MD5>923e6b6b32c69c047e3adec4f3ab8ceb</MD5> <SHA256>9878beb4e9b74a5f0d9500772235a39066fd019ba7af9ae6afe483ca713e3c7c</SHA256> <FileName>rocksdb-6.3.6.tar.gz</FileName> <FileSize>5573722</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf rocksdb-6.3.6.tar.gz cd rocksdb-6.3.6/ mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. make -j $NUM_CPU_CORES make db_bench echo $? > ~/install-exit-status cd ~ echo "#!/bin/bash rm -rf /tmp/rocksdbtest-1000/dbbench/ cd rocksdb-6.3.6/build/ ./db_bench \$@ -compression_type \"none\" --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 v9.0.1--> <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 v9.0.1--> <PhoronixTestSuite> <TestInformation> <Title>Facebook RocksDB</Title> <AppVersion>6.3.6</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.0.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, bc, gflags, cmake</ExternalDependencies> <EnvironmentSize>740</EnvironmentSize> <ProjectURL>https://github.com/facebook/rocksdb</ProjectURL> <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> </Menu> </Option> </TestSettings> </PhoronixTestSuite>