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 CouchDB 1.3.0
pts/couchdb-1.3.0
- 22 July 2023 -
Update against CouchDB 3.3.2
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://mirrors.ibiblio.org/apache/couchdb/source/3.3.2/apache-couchdb-3.3.2.tar.gz, https://apache.osuosl.org/couchdb/source/3.3.2/apache-couchdb-3.3.2.tar.gz</URL> <MD5>03ba7759a0553e97201637b106bf44f1</MD5> <SHA256>3d6823d42d10cf0d4f86c9c4fe59c9932c89d68578fcb6c4b4278dc769308daa</SHA256> <FileName>apache-couchdb-3.3.2.tar.gz</FileName> <FileSize>19083558</FileSize> </Package> <Package> <URL>http://www.phoronix-test-suite.com/benchmark-files/apache-couchdb-benchbulk-1.tar.xz</URL> <MD5>192b63227d48c76b10f7ba7eb024e8c1</MD5> <SHA256>a9bb7d67dd668cd7cb336f59a5079e239fe028bc23ae270047e69b0f345d004a</SHA256> <FileName>apache-couchdb-benchbulk-1.tar.xz</FileName> <FileSize>1172</FileSize> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/bash tar -xf apache-couchdb-benchbulk-1.tar.xz tar -xf apache-couchdb-3.3.2.tar.gz cd apache-couchdb-3.3.2 MOZJS_VERSION=`ls /usr/include/mozjs-*/jsapi.h | grep "mozjs-" | sort -r | head -n1 | cut -d '-' -f2 | cut -d '/' -f1` case $MOZJS_VERSION in ''|*[!0-9]*) MOZJS_VERSION=78 ;; *) echo "MOZJS_VERSION = $MOZJS_VERSION" ;; esac ./configure --disable-docs --disable-fauxton --spidermonkey-version $MOZJS_VERSION make -j $NUM_CPU_CORES make release echo $? > ~/install-exit-status echo "admin = couchPTStest" >> rel/couchdb/etc/local.ini cd ~ echo "#!/bin/sh cd apache-couchdb-3.3.2/rel/couchdb ./bin/couchdb & echo \$? > ~/test-exit-status COUCH_SERVER_PID=\$! sleep 5 cd ~ bash benchbulk.sh \$@ > \$LOG_FILE 2>&1 kill \$COUCH_SERVER_PID sleep 1" > couchdb chmod +x couchdb
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <SystemMonitor> <Sensor>sys.time</Sensor> </SystemMonitor> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <TestInformation> <Title>Apache CouchDB</Title> <AppVersion>3.3.2</AppVersion> <Description>This is a bulk insertion benchmark of Apache CouchDB. CouchDB is a document-oriented NoSQL database implemented in Erlang.</Description> <ResultScale>Seconds</ResultScale> <Proportion>LIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.3.0</Version> <SupportedPlatforms>Linux</SupportedPlatforms> <SoftwareType>Application</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, curl, erlang</ExternalDependencies> <EnvironmentSize>275</EnvironmentSize> <ProjectURL>https://couchdb.apache.org/</ProjectURL> <RepositoryURL>https://github.com/apache/couchdb</RepositoryURL> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>erl, unicode/utf8.h, mozjs-78/jsapi.h, jsapi.h</SystemDependencies> </TestProfile> <TestSettings> <Default> <MinimumLength>20</MinimumLength> </Default> <Option> <DisplayName>Bulk Size</DisplayName> <Identifier>bulk-size</Identifier> <Menu> <Entry> <Name>100</Name> <Value>100</Value> </Entry> <Entry> <Name>300</Name> <Value>300</Value> </Entry> <Entry> <Name>500</Name> <Value>500</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Inserts</DisplayName> <Identifier>inserts</Identifier> <Menu> <Entry> <Name>1000</Name> <Value>1000</Value> </Entry> <Entry> <Name>3000</Name> <Value>3000</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Rounds</DisplayName> <Identifier>rounds</Identifier> <Menu> <Entry> <Name>30</Name> <Value>30</Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>