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
CloudSuite Data Analytics 1.2.0
pts/cloudsuite-da-1.2.0
- 04 February 2023 -
Update against CloudSuite 4.0 upstream state.
install.sh
#!/bin/sh if which docker>/dev/null 2>&1 ; then echo 0 > ~/install-exit-status else echo "ERROR: Docker is not found on the system! This test profile needs a working docker installation in the PATH." echo 2 > ~/install-exit-status exit fi docker pull cloudsuite/hadoop:2.10.1 docker pull cloudsuite/data-analytics:4.0 echo $? > ~/install-exit-status echo "#!/bin/bash export HOME=\$DEBUG_REAL_HOME HOST_MASTER=\`hostname\` # Start master and slaves SLAVE_COUNT=\$1 docker run -d --net host --name master cloudsuite/data-analytics:4.0 master for (( SLAVE_I=1; SLAVE_I<=\$SLAVE_COUNT; SLAVE_I++ )) do docker run -d --net host --name slave\$SLAVE_I cloudsuite/hadoop:2.10.1 slave \$HOST_MASTER done # Run data analytics benchmark docker exec master benchmark > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status # Stop them docker stop master for (( SLAVE_I=1; SLAVE_I<=\$SLAVE_COUNT; SLAVE_I++ )) do docker stop slave\$SLAVE_I done sleep 2 docker container rm master for (( SLAVE_I=1; SLAVE_I<=\$SLAVE_COUNT; SLAVE_I++ )) do docker container rm slave\$SLAVE_I done" > cloudsuite-da chmod +x cloudsuite-da
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Benchmark time: #_RESULT_#</OutputTemplate> <StripFromResult>ms</StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>CloudSuite Data Analytics</Title> <AppVersion>4.0</AppVersion> <Description>CloudSuite Data Analytics is a Docker-based benchmark and runs a Naive Bayes classifier on a Wikimedia dataset with Hadoop and Mahout.</Description> <ResultScale>ms</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.2.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Utility</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <RequiresInternet>TRUE</RequiresInternet> <EnvironmentSize>700</EnvironmentSize> <ProjectURL>https://github.com/parsa-epfl/cloudsuite/blob/master/docs/benchmarks/data-analytics.md</ProjectURL> <RepositoryURL>https://github.com/parsa-epfl/cloudsuite/</RepositoryURL> <InternalTags>Cloud, Docker</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>docker</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Hadoop Slaves</DisplayName> <Identifier>slaves</Identifier> <Menu> <Entry> <Name>1</Name> <Value>1</Value> </Entry> <Entry> <Name>4</Name> <Value>4</Value> </Entry> <Entry> <Name>8</Name> <Value>8</Value> </Entry> <Entry> <Name>32</Name> <Value>32</Value> </Entry> <Entry> <Name>64</Name> <Value>64</Value> </Entry> <Entry> <Name>128</Name> <Value>128</Value> </Entry> <Entry> <Name>256</Name> <Value>256</Value> </Entry> <Entry> <Name>512</Name> <Value>512</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>