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
PostgreSQL pgbench 1.11.1
pts/pgbench-1.11.1
- 11 January 2022 -
Allow a scaling factor up to 25,000.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ftp.postgresql.org/pub/source/v14.0/postgresql-14.0.tar.bz2</URL> <MD5>26e85a23c6a0ef68e9755555aea31141</MD5> <SHA256>ee2ad79126a7375e9102c4db77c4acae6ae6ffe3e082403b88826d96d927a122</SHA256> <FileName>postgresql-14.0.tar.bz2</FileName> <FileSize>21836842</FileSize> <PlatformSpecific>Linux, BSD, Solaris, MacOSX</PlatformSpecific> </Package> <Package> <URL>http://get.enterprisedb.com/postgresql/postgresql-14.0-1-windows-x64-binaries.zip</URL> <MD5>901d88791ef9cd29fd58d937412b2a01</MD5> <SHA256>8a84e4a348d5a05b669ee5733b6dadfdcbbe089b17bcbec2dbcd2ad69ff1f661</SHA256> <FileName>postgresql-14.0-1-windows-x64-binaries.zip</FileName> <FileSize>254959623</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh version=14.0 tar -xjf postgresql-${version}.tar.bz2 rm -rf $HOME/pg_ mkdir -p $HOME/pg_/data/postgresql/extension/ touch $HOME/pg_/data/postgresql/extension/plpgsql.control # Junk up the root checking code so test profiles can easily run as root patch -p0 <<'EOF' diff -Naur postgresql-14.0.orig/src/backend/main/main.c postgresql-14.0/src/backend/main/main.c --- postgresql-14.0.orig/src/backend/main/main.c 2021-09-27 16:57:41.000000000 -0400 +++ postgresql-14.0/src/backend/main/main.c 2021-09-30 09:43:38.827546318 -0400 @@ -58,7 +58,7 @@ int main(int argc, char *argv[]) { - bool do_check_root = true; + bool do_check_root = false; /* * If supported on the current platform, set up a handler to be called if diff -Naur postgresql-14.0.orig/src/bin/initdb/initdb.c postgresql-14.0/src/bin/initdb/initdb.c --- postgresql-14.0.orig/src/bin/initdb/initdb.c 2021-09-27 16:57:41.000000000 -0400 +++ postgresql-14.0/src/bin/initdb/initdb.c 2021-09-30 09:44:20.707639675 -0400 @@ -603,7 +603,7 @@ { const char *username; -#ifndef WIN32 +#if 0 if (geteuid() == 0) /* 0 is root's uid */ { pg_log_error("cannot be run as root"); diff -Naur postgresql-14.0.orig/src/bin/pg_ctl/pg_ctl.c postgresql-14.0/src/bin/pg_ctl/pg_ctl.c --- postgresql-14.0.orig/src/bin/pg_ctl/pg_ctl.c 2021-09-27 16:57:41.000000000 -0400 +++ postgresql-14.0/src/bin/pg_ctl/pg_ctl.c 2021-09-30 09:44:47.359759610 -0400 @@ -2304,7 +2304,7 @@ /* * Disallow running as root, to forestall any possible security holes. */ -#ifndef WIN32 +#if 0 if (geteuid() == 0) { write_stderr(_("%s: cannot be run as root\n" diff -Naur postgresql-14.0.orig/src/bin/pg_upgrade/option.c postgresql-14.0/src/bin/pg_upgrade/option.c --- postgresql-14.0.orig/src/bin/pg_upgrade/option.c 2021-09-27 16:57:41.000000000 -0400 +++ postgresql-14.0/src/bin/pg_upgrade/option.c 2021-09-30 09:45:29.424031830 -0400 @@ -97,10 +97,6 @@ } } - /* Allow help and version to be run as root, so do the test here. */ - if (os_user_effective_id == 0) - pg_fatal("%s: cannot be run as root\n", os_info.progname); - while ((option = getopt_long(argc, argv, "d:D:b:B:cj:ko:O:p:P:rs:U:v", long_options, &optindex)) != -1) { EOF cd postgresql-${version} ./configure --prefix=$HOME/pg_ --without-readline --without-zlib if [ "$OS_TYPE" = "BSD" ] then gmake -j $NUM_CPU_CORES gmake -C contrib/pgbench all # echo $? > ~/install-exit-status gmake install gmake -C contrib/pgbench install else make -j $NUM_CPU_CORES make -C contrib/pgbench all # echo $? > ~/install-exit-status make install make -C contrib/pgbench install fi cd ~ rm -rf postgresql-${version}/ rm -rf pg_/doc/ # initialize database with encoding and locale $HOME/pg_/bin/initdb -D $HOME/pg_/data/db --encoding=SQL_ASCII --locale=C echo "#!/bin/sh PGDATA=\$HOME/pg_/data/db/ PGPORT=7777 export PGDATA export PGPORT # start server SHARED_BUFFER_SIZE=\`echo \"\$SYS_MEMORY * 0.25 / 1\" | bc\` SHARED_BUFFER_SIZE=\$(( \$SHARED_BUFFER_SIZE < 8192 ? \$SHARED_BUFFER_SIZE : 8192 )) echo \"Buffer size is \${SHARED_BUFFER_SIZE}MB\" > \$LOG_FILE pg_/bin/pg_ctl start -o \"-c max_connections=500 -c shared_buffers=\${SHARED_BUFFER_SIZE}MB\" # wait for server to start sleep 10 # create test db pg_/bin/createdb pgbench # set up tables pg_/bin/pgbench -i \$1 \$2 -n pgbench # run the test pg_/bin/pgbench -j \$NUM_CPU_CORES \$@ -n -T 120 -r pgbench >>\$LOG_FILE 2>&1 # drop test db pg_/bin/dropdb pgbench # stop server pg_/bin/pg_ctl stop" > pgbench chmod +x pgbench
install_windows.sh
#!/bin/sh unzip -o postgresql-14.0-1-windows-x64-binaries.zip rm -rf $HOME/pg_ mkdir -p $HOME/pg_/data/postgresql/extension/ touch $HOME/pg_/data/postgresql/extension/plpgsql.control # initialize database with encoding and locale cd pgsql/bin ./initdb.exe -D $HOME/db --encoding=SQL_ASCII --locale=C cd ~ echo "If this test fails to run, you may need to manually install the Microsoft Visual C++ Redistributable package for MSVCR120.dll: https://www.microsoft.com/en-us/download/details.aspx?id=40784" > ~/install-message echo "#!/bin/sh PGDATA=\$HOME/db/ PGPORT=7777 export PGDATA mkdir db export PGPORT # start server # Windows is currently limited to 512MB shared_buffers ./pgsql/bin/pg_ctl.exe start -o ' -c max_connections=500 -c shared_buffers=512MB' # wait for server to start sleep 10 # create test db ./pgsql/bin/createdb.exe pgbench ./pgsql/bin/pgbench.exe -i \$1 \$2 -n pgbench # run the test ./pgsql/bin/pgbench.exe -j \$NUM_CPU_CORES \$@ -n -T 120 -r pgbench >\$LOG_FILE # drop test db ./pgsql/bin/dropdb.exe pgbench # stop server ./pgsql/bin/pg_ctl.exe stop" > pgbench chmod +x pgbench
results-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0--> <PhoronixTestSuite> <ResultsParser> <OutputTemplate>tps = #_RESULT_# (excluding connections establishing) TPS</OutputTemplate> <LineHint>tps = </LineHint> <ResultScale>TPS</ResultScale> <ResultProportion>HIB</ResultProportion> <ResultPrecision>0</ResultPrecision> </ResultsParser> <ResultsParser> <OutputTemplate>latency average = #_RESULT_# ms</OutputTemplate> <LineHint>latency average</LineHint> <ResultScale>ms</ResultScale> <ResultProportion>LIB</ResultProportion> <AppendToArgumentsDescription>Average Latency</AppendToArgumentsDescription> </ResultsParser> </PhoronixTestSuite>
test-definition.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.0--> <PhoronixTestSuite> <TestInformation> <Title>PostgreSQL pgbench</Title> <AppVersion>14.0</AppVersion> <Description>This is a benchmark of PostgreSQL using pgbench for facilitating the database benchmarks.</Description> <ResultScale>TPS</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.11.1</Version> <SupportedPlatforms>Linux, MacOSX, BSD, Solaris, Windows</SupportedPlatforms> <SoftwareType>Benchmark</SoftwareType> <TestType>System</TestType> <License>Free</License> <Status>Verified</Status> <ExternalDependencies>build-utilities, bc</ExternalDependencies> <EnvironmentSize>1500</EnvironmentSize> <ProjectURL>http://www.postgresql.org/</ProjectURL> <RepositoryURL>https://github.com/postgres/postgres</RepositoryURL> <InternalTags>SMP</InternalTags> <Maintainer>Michael Larabel</Maintainer> <SystemDependencies>bc</SystemDependencies> </TestProfile> <TestSettings> <Option> <DisplayName>Scaling Factor</DisplayName> <Identifier>scaling-factor</Identifier> <ArgumentPrefix>-s </ArgumentPrefix> <Menu> <Entry> <Name>1</Name> <Value>1</Value> </Entry> <Entry> <Name>100</Name> <Value>100</Value> </Entry> <Entry> <Name>1000</Name> <Value>1000</Value> </Entry> <Entry> <Name>10000</Name> <Value>10000</Value> </Entry> <Entry> <Name>25000</Name> <Value>25000</Value> <Message>Intended for very large servers.</Message> </Entry> </Menu> </Option> <Option> <DisplayName>Clients</DisplayName> <Identifier>clients</Identifier> <ArgumentPrefix>-c </ArgumentPrefix> <Menu> <Entry> <Name>1</Name> <Value>1</Value> </Entry> <Entry> <Name>50</Name> <Value>50</Value> </Entry> <Entry> <Name>100</Name> <Value>100</Value> </Entry> <Entry> <Name>250</Name> <Value>250</Value> </Entry> <Entry> <Name>500</Name> <Value>500</Value> </Entry> </Menu> </Option> <Option> <DisplayName>Mode</DisplayName> <Identifier>run-mode</Identifier> <Menu> <Entry> <Name>Read Write</Name> <Value> </Value> </Entry> <Entry> <Name>Read Only</Name> <Value>-S </Value> </Entry> </Menu> </Option> </TestSettings> </PhoronixTestSuite>