Tests
Suites
Latest Results
Search
Register
Login
Popular Tests
Flexible IO Tester
Timed Linux Kernel Compilation
Blender
SVT-AV1
7-Zip Compression
FFmpeg
Newest Tests
OpenVINO GenAI
Rustls
LiteRT
WarpX
Epoch
Valkey
Recently Updated Tests
srsRAN Project
VVenC
x265
RELION
Llamafile
Llama.cpp
New & Recently Updated Tests
Recently Updated Suites
Machine Learning
Server Motherboard
HPC - High Performance Computing
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 Web Serving 1.1.0
pts/cloudsuite-ws-1.1.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/web-serving:db_server docker pull cloudsuite/web-serving:memcached_server docker pull cloudsuite/web-serving:web_server docker pull cloudsuite/web-serving:faban_client echo $? > ~/install-exit-status docker network create search_network echo "#!/bin/bash # Run data analytics benchmark docker run --net=host --name=faban_client cloudsuite/web-serving:faban_client 127.0.0.1 \$@ --steady=60 > pts-run.log 2>&1 echo \$? > ~/test-exit-status cat pts-run.log | grep metric | tr '<' ' ' | tr '>' ' ' > \$LOG_FILE docker stop faban_client docker container rm faban_client" > cloudsuite-ws chmod +x cloudsuite-ws
post.sh
#!/bin/bash docker stop database_server docker stop memcache_server docker stop web_server docker stop faban_client docker container rm database_server docker container rm memcache_server docker container rm web_server docker container rm faban_client
pre.sh
#!/bin/bash # Start master and slaves docker run -dt --net=host --name=database_server cloudsuite/web-serving:db_server # database_server needs time to download payload from Internet... while ! docker logs database_server | grep -q "Starting MariaDB database server"; do sleep 5 echo "waiting on db server to start..." done docker run -dt --net=host --name=memcache_server cloudsuite/web-serving:memcached_server IP_ADDR=`hostname -I | cut -d" " -f1` docker run -dt --net=host --name=web_server cloudsuite/web-serving:web_server /etc/bootstrap.sh http $IP_ADDR $IP_ADDR $IP_ADDR 800
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate> metric unit="ops/sec" #_RESULT_# /metric</OutputTemplate> <LineHint>ops/sec</LineHint> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>CloudSuite Web Serving</Title> <Description>CloudSuite Web Serving is a Docker-based web server benchmark making use of a web server with Memcached and a MySQL database server.</Description> <ResultScale>ops/sec</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.1.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/CSv3/docs/benchmarks/web-serving.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>Load Scale</DisplayName> <Identifier>load-scale</Identifier> <Menu> <Entry> <Name>100</Name> <Value>100 --ramp-up=120</Value> </Entry> <Entry> <Name>400</Name> <Value>400 --ramp-up=440</Value> </Entry> <Entry> <Name>500</Name> <Value>500 --ramp-up=550</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>