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
ScyllaDB 1.0.0
pts/scylladb-1.0.0
- 03 December 2023 -
Add ScyllaDB test profile.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://archive.apache.org/dist/cassandra/4.1.3/apache-cassandra-4.1.3-bin.tar.gz</URL> <MD5>f2f148d0c7af65375caedb074dde93d1</MD5> <SHA256>da014999723f4e1e2c15775dac6aaa9ff69a48f6df6465740fcd52ca9d19ea88</SHA256> <FileName>apache-cassandra-4.1.3-bin.tar.gz</FileName> <FileSize>49955565</FileSize> </Package> <Package> <URL>https://downloads.scylladb.com/downloads/scylla/relocatable/scylladb-5.2/scylla-5.2.9-0.20230920.5709d0043978.x86_64.tar.gz</URL> <MD5>0d5175fdd91f421c037c3c56cef66ab0</MD5> <SHA256>bcbd7ea8bf5dc81ff7e9330222c0379f0526b73a559c6c6dfdadd92248cd4a19</SHA256> <FileName>scylla-5.2.9-0.20230920.5709d0043978.x86_64.tar.gz</FileName> <FileSize>92721758</FileSize> <ArchitectureSpecific>x86_64</ArchitectureSpecific> </Package> <Package> <URL>https://downloads.scylladb.com/downloads/scylla/relocatable/scylladb-5.2/scylla-5.2.9-0.20230920.5709d0043978.aarch64.tar.gz</URL> <MD5>b214be552ace1f5915e2514b1da44fe8</MD5> <SHA256>f6a52721d804c5c48a6981ead87359fd74347653d9998e7b73b5c4c9222b7913</SHA256> <FileName>scylla-5.2.9-0.20230920.5709d0043978.aarch64.tar.gz</FileName> <FileSize>75476351</FileSize> <ArchitectureSpecific>aarch64</ArchitectureSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh rm -rf scylla if [ $OS_ARCH = "aarch64" ] then tar -xf scylla-5.2.9-0.20230920.5709d0043978.aarch64.tar.gz elif [ $OS_ARCH = "x86_64" ] then tar -xf scylla-5.2.9-0.20230920.5709d0043978.x86_64.tar.gz else echo "ERROR: Not a supported platform..." > $LOG_FILE echo 2 > ~/install-exit-status exit 2 fi mv scylla scylla-install tar -xf apache-cassandra-4.1.3-bin.tar.gz cd ~/apache-cassandra-4.1.3/tools/bin chmod +x cassandra-stress mkdir ~/apache-cassandra-4.1.3/logs cd ~ pip3 install --user traceback-with-variables cd scylla-install mkdir ~/scylla ./install.sh --prefix $HOME/scylla --python3 /usr/bin/python3 --nonroot echo $? > ~/install-exit-status cd ~/scylla mkdir conf cp etc/scylla/scylla.yaml conf/scylla.yaml cd ~ rm -rf scylla-install echo "#!/bin/bash cd scylla rm -rf tmp ./bin/scylla --workdir tmp --smp \$NUM_CPU_CORES --developer-mode 1 > ~/scylla-server-log 2>&1 & SCYLLA_SERVER_PID=\$! sleep 5 grep -q \"initialization completed.\" <(tail -f ~/scylla-server-log) sleep 1 cd ~/apache-cassandra-4.1.3/tools/bin case \"\$1\" in \"WRITE\") ./cassandra-stress write duration=2m -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 > \$LOG_FILE 2>&1 ;; \"READ\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 sleep 2 ./cassandra-stress read duration=2m -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 > \$LOG_FILE 2>&1 ;; \"MIXED_1_1\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 sleep 2 ./cassandra-stress mixed ratio\(write=1,read=1\) duration=2m -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 > \$LOG_FILE 2>&1 ;; \"MIXED_1_3\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 sleep 2 ./cassandra-stress mixed ratio\(write=1,read=3\) duration=90s -rate threads=\$NUM_CPU_CORES -mode native cql3 protocolVersion=4 > \$LOG_FILE 2>&1 ;; esac sleep 3 kill -9 \$SCYLLA_SERVER_PID sleep 2 rm -rf ~/scylla/tmp" > scylladb chmod +x scylladb
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Op rate : #_RESULT_# op/s [WRITE: 55,622 op/s]</OutputTemplate> <LineHint>Op rate</LineHint> <StripFromResult>,</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>ScyllaDB</Title> <AppVersion>5.2.9</AppVersion> <Description>This is a benchmark of ScyllaDB and is making use of Apache Cassandra's cassandra-stress for conducting the benchmark. ScyllaDB is an open-source distributed NoSQL data store that is compatible with Apache Cassandra while focusing on higher throughput and lower latency. ScyllaDB uses a sharded design on each node.</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>java, python</ExternalDependencies> <EnvironmentSize>2100</EnvironmentSize> <ProjectURL>https://www.scylladb.com/open-source-nosql-database/</ProjectURL> <RepositoryURL>https://github.com/scylladb/scylladb</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> </TestProfile> <TestSettings> <Option> <DisplayName>Test</DisplayName> <Identifier>test</Identifier> <Menu> <Entry> <Name>Writes</Name> <Value>WRITE</Value> </Entry> <Entry> <Name>Mixed 1:1</Name> <Value>MIXED_1_1</Value> </Entry> <Entry> <Name>Mixed 1:3</Name> <Value>MIXED_1_3</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>