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
Apache Cassandra 1.1.0
pts/cassandra-1.1.0
- 27 July 2021 -
Update against Apache Cassandra 4.0 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://archive.apache.org/dist/cassandra/4.0.0/apache-cassandra-4.0.0-bin.tar.gz</URL> <MD5>49e1b7c1a6a374813679e72113f69620</MD5> <SHA256>2ff17bda7126c50a2d4b26fe6169807f35d2db9e308dc2851109e1c7438ac2f1</SHA256> <FileName>apache-cassandra-4.0.0-bin.tar.gz</FileName> <FileSize>46541792</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf apache-cassandra-4.0.0-bin.tar.gz cd ~/apache-cassandra-4.0.0/bin/ chmod +x cassandra cd ~/apache-cassandra-4.0.0/tools/bin chmod +x cassandra-stress cd ~/apache-cassandra-4.0.0/conf sed -i '/-XX:GCLogFileSize=10M/d' ./jvm.options sed -i '/-XX:NumberOfGCLogFiles=10/d' ./jvm.options sed -i '/-XX:+UseGCLogFileRotation/d' ./jvm.options sed -i '/-XX:+PrintPromotionFailure/d' ./jvm.options sed -i '/-XX:+PrintGCApplicationStoppedTime/d' ./jvm.options sed -i '/-XX:+PrintTenuringDistribution/d' ./jvm.options sed -i '/-XX:+PrintHeapAtGC/d' ./jvm.options sed -i '/-XX:+PrintGCDateStamps/d' ./jvm.options sed -i '/-XX:+UseParNewGC/d' ./jvm.options sed -i '/-XX:ThreadPriorityPolicy=42/d' ./jvm.options # sed -i '//d' ./infile mkdir ~/apache-cassandra-4.0.0/logs cd ~ echo "#!/bin/bash cd ~/apache-cassandra-4.0.0/tools/bin case \"\$1\" in \"WRITE\") ./cassandra-stress write duration=2m -rate threads=\$NUM_CPU_CORES > \$LOG_FILE 2>&1 ;; \"READ\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES sleep 2 ./cassandra-stress read duration=2m -rate threads=\$NUM_CPU_CORES > \$LOG_FILE 2>&1 ;; \"MIXED_1_1\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES sleep 2 ./cassandra-stress mixed ratio\(write=1,read=1\) duration=2m -rate threads=\$NUM_CPU_CORES > \$LOG_FILE 2>&1 ;; \"MIXED_1_3\") ./cassandra-stress write -rate threads=\$NUM_CPU_CORES sleep 2 ./cassandra-stress mixed ratio\(write=1,read=3\) duration=90s -rate threads=\$NUM_CPU_CORES > \$LOG_FILE 2>&1 ;; esac " > cassandra chmod +x cassandra
post.sh
#!/bin/sh CASSANDRA_SERVER_PID=`cat ~/cassandra-server-pid` kill -9 $CASSANDRA_SERVER_PID sleep 3 cd apache-cassandra-4.0.0/ rm -rf data/
pre.sh
#!/bin/sh cd apache-cassandra-4.0.0/ rm -rf data/ cd bin/ ./cassandra -p ~/cassandra-server-pid sleep 10 # Prep fill cd ~/apache-cassandra-4.0.0/tools/bin ./cassandra-stress write -rate threads=\$NUM_CPU_CORES
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.4.0--> <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.4.0--> <PhoronixTestSuite> <TestInformation> <Title>Apache Cassandra</Title> <AppVersion>4.0</AppVersion> <Description>This is a benchmark of the Apache Cassandra NoSQL database management system making use of cassandra-stress.</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>java</ExternalDependencies> <EnvironmentSize>2100</EnvironmentSize> <ProjectURL>http://cassandra.apache.org/</ProjectURL> <RepositoryURL>https://github.com/apache/cassandra</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>Reads</Name> <Value>READ</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>