Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
x265
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Mobile Neural Network
ACES DGEMM
NWChem
SuperTuxKart
ASTC Encoder
SVT-AV1
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
CockroachDB 1.0.1
pts/cockroach-1.0.1
- 17 December 2022 -
Initial commit.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>https://binaries.cockroachdb.com/cockroach-v22.2.0.linux-amd64.tgz</URL> <MD5>adcf2f669a8faeba7ff45511d9ed001e</MD5> <SHA256>6faed3592ef18c5a191fb8e6850d6a2ceff42e8a97978ec7acbc05d8331d98e9</SHA256> <FileName>cockroach-v22.2.0.linux-amd64.tgz</FileName> <FileSize>98310243</FileSize> <ArchitectureSpecific>x86_64</ArchitectureSpecific> </Package> <Package> <URL>https://binaries.cockroachdb.com/cockroach-v22.2.0.linux-3.7.10-gnu-aarch64.tgz</URL> <MD5>6a9d02387ee45d6c573962450ee99e29</MD5> <SHA256>e9fa30bb391cd5d7f8482c48a1a4f6908c163697fa65d16fefce6a3537e44b5c</SHA256> <FileName>cockroach-v22.2.0.linux-3.7.10-gnu-aarch64.tgz</FileName> <FileSize>91179820</FileSize> <ArchitectureSpecific>aarch64</ArchitectureSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh rm -rf cockroach-build if [ $OS_ARCH = "aarch64" ] then tar -xvf cockroach-v22.2.0.linux-3.7.10-gnu-aarch64.tgz mv cockroach-v22.2.0.linux-3.7.10-gnu-aarch64 cockroach-build else tar -xf cockroach-v22.2.0.linux-amd64.tgz mv cockroach-v22.2.0.linux-amd64/ cockroach-build fi echo "#!/bin/sh cd cockroach-build ./cockroach start-single-node --cache .25 --insecure > \$LOG_FILE 2>&1 & COCKROACH_PID=\$! sleep 5 # Run test ./cockroach workload run \$@ >> \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status kill \$COCKROACH_PID sleep 1 rm -rf cockroach-data/" > cockroach chmod +x cockroach
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> 90.0s 0 16325 #_RESULT_# 3.7 0.6 10.0 65.0 125.8 </OutputTemplate> <LineHint>90.0s</LineHint> <DeleteOutputBefore>_elapsed___errors_____ops(total)___ops/sec(cum)__avg(ms)__p50(ms)__p95(ms)__p99(ms)_pMax(ms)__result</DeleteOutputBefore> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>CockroachDB</Title> <AppVersion>22.2</AppVersion> <Description>CockroachDB is a cloud-native, distributed SQL database for data intensive applications. This test profile uses a server-less CockroachDB configuration to test various Coackroach workloads on the local host with a single node.</Description> <ResultScale>ops/s</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.1</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Application</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <SupportedArchitectures>x86_64, aarch64</SupportedArchitectures> <ExternalDependencies>build-utilities</ExternalDependencies> <EnvironmentSize>1500</EnvironmentSize> <ProjectURL>https://www.cockroachlabs.com/</ProjectURL> <RepositoryURL>https://github.com/cockroachdb/cockroach</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Default> <PostArguments>--duration 90s --drop</PostArguments> </Default> <Option> <DisplayName>Workload</DisplayName> <Identifier>workload</Identifier> <Menu> <Entry> <Name>KV, 95% Reads</Name> <Value>kv --ramp 10s --read-percent 95</Value> </Entry> <Entry> <Name>KV, 50% Reads</Name> <Value>kv --ramp 10s --read-percent 50</Value> </Entry> <Entry> <Name>KV, 60% Reads</Name> <Value>kv --ramp 10s --read-percent 60</Value> </Entry> <Entry> <Name>KV, 10% Reads</Name> <Value>kv --ramp 10s --read-percent 10</Value> </Entry> <Entry> <Name>MoVR</Name> <Value>movr</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Concurrency</DisplayName> <Identifier>concurrency</Identifier> <ArgumentPrefix>--concurrency </ArgumentPrefix> <Menu> <Entry> <Name>128</Name> <Value>128</Value> </Entry> <Entry> <Name>256</Name> <Value>256</Value> </Entry> <Entry> <Name>512</Name> <Value>512</Value> </Entry> <Entry> <Name>1024</Name> <Value>1024</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>