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
CloudSuite Media Streaming 1.0.0
pts/cloudsuite-ms-1.0.0
- 01 November 2019 -
Initial commit of CloudSuite Media Streaming benchmark.
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/media-streaming:dataset docker pull cloudsuite/media-streaming:server docker pull cloudsuite/media-streaming:client echo $? > ~/install-exit-status echo "#!/bin/bash export HOME=\$DEBUG_REAL_HOME # Start docker network create streaming_network docker create --name streaming_dataset cloudsuite/media-streaming:dataset docker run -d --name streaming_server --volumes-from streaming_dataset --net streaming_network cloudsuite/media-streaming:server # Run in-memory analytics benchmark docker run -t --name=streaming_client -v /path/to/output:/output --volumes-from streaming_dataset --net streaming_network cloudsuite/media-streaming:client streaming_server \$@ > \$LOG_FILE 2>&1 echo \$? > ~/test-exit-status # Stop them docker stop streaming_dataset docker stop streaming_server docker stop streaming_client docker container rm streaming_dataset docker container rm streaming_server docker container rm streaming_client " > cloudsuite-ms chmod +x cloudsuite-ms
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.0m1--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>Reply rate: #_RESULT_#</OutputTemplate> <StripFromResult></StripFromResult> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v9.2.0m1--> <PhoronixTestSuite> <TestInformation> <Title>CloudSuite Media Streaming</Title> <Description>CloudSuite Media Streaming uses the Nginx web server for hosted videos of varying lengths/qualities.</Description> <ResultScale>Reply Rate</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>1</TimesToRun> </TestInformation> <TestProfile> <Version>1.0.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/media-streaming.md</ProjectURL> <InternalTags>Cloud, Docker</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>docker</SystemDependencies> </TestProfile> </PhoronixTestSuite>