Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Timed Linux Kernel Compilation
SVT-AV1
7-Zip Compression
Stockfish
FFmpeg
Blender
Newest Tests
Rustls
LiteRT
WarpX
Epoch
Valkey
Whisperfile
Recently Updated Tests
Renaissance
Blender
vkpeak
ProjectPhysX OpenCL-Benchmark
FluidX3D
Primesieve
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.2.0
pts/cassandra-1.2.0
- 27 July 2023 -
Update against Cassandra 4.1 upstream.
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> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh tar -xf apache-cassandra-4.1.3-bin.tar.gz cd ~/apache-cassandra-4.1.3/bin/ chmod +x cassandra cd ~/apache-cassandra-4.1.3/tools/bin chmod +x cassandra-stress cd ~/apache-cassandra-4.1.3/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.1.3/logs cd ~ echo "#!/bin/bash cd ~/apache-cassandra-4.1.3/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.1.3/ rm -rf data/
pre.sh
#!/bin/sh cd apache-cassandra-4.1.3/ rm -rf data/ cd bin/ ./cassandra -R -p ~/cassandra-server-pid sleep 10 # Prep fill cd ~/apache-cassandra-4.1.3/tools/bin ./cassandra-stress write -rate threads=\$NUM_CPU_CORES
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>Apache Cassandra</Title> <AppVersion>4.1.3</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.2.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>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>