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 1.12.0
pts/pgbench-1.12.0
- 13 October 2022 -
Update against PostgreSQL 15 upstream.
downloads.xml
<?xml version="1.0"?> <!--Phoronix Test Suite v10.8.4--> <PhoronixTestSuite> <Downloads> <Package> <URL>http://ftp.postgresql.org/pub/source/v15.0/postgresql-15.0.tar.bz2</URL> <MD5>9516690cc6554dacc4a4d0920834a623</MD5> <SHA256>72ec74f4a7c16e684f43ea42e215497fcd4c55d028a68fb72e99e61ff40da4d6</SHA256> <FileName>postgresql-15.0.tar.bz2</FileName> <FileSize>22403741</FileSize> <PlatformSpecific>Linux, BSD, Solaris, MacOSX</PlatformSpecific> </Package> <Package> <URL>http://get.enterprisedb.com/postgresql/postgresql-15.0-1-windows-x64-binaries.zip</URL> <MD5>cf7bc7f9a3288795b6c4b0aeae6014c9</MD5> <SHA256>935bfddf4ca8e2a97a467fe70f14ca6cf86b61667d0e1189e7977e4c0d27b836</SHA256> <FileName>postgresql-15.0-1-windows-x64-binaries.zip</FileName> <FileSize>294361608</FileSize> <PlatformSpecific>Windows</PlatformSpecific> </Package> </Downloads> </PhoronixTestSuite>
install.sh
#!/bin/sh version=15.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-15.0.orig/src/backend/main/main.c postgresql-15.0/src/backend/main/main.c --- postgresql-15.0.orig/src/backend/main/main.c 2022-10-10 16:57:37.000000000 -0400 +++ postgresql-15.0/src/backend/main/main.c 2022-10-13 10:39:56.357527710 -0400 @@ -62,7 +62,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-15.0.orig/src/bin/initdb/initdb.c postgresql-15.0/src/bin/initdb/initdb.c --- postgresql-15.0.orig/src/bin/initdb/initdb.c 2022-10-10 16:57:37.000000000 -0400 +++ postgresql-15.0/src/bin/initdb/initdb.c 2022-10-13 10:40:42.628867350 -0400 @@ -592,7 +592,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-15.0.orig/src/bin/pg_ctl/pg_ctl.c postgresql-15.0/src/bin/pg_ctl/pg_ctl.c --- postgresql-15.0.orig/src/bin/pg_ctl/pg_ctl.c 2022-10-10 16:57:37.000000000 -0400 +++ postgresql-15.0/src/bin/pg_ctl/pg_ctl.c 2022-10-13 10:41:06.324519458 -0400 @@ -2339,7 +2339,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-15.0.orig/src/bin/pg_upgrade/option.c postgresql-15.0/src/bin/pg_upgrade/option.c --- postgresql-15.0.orig/src/bin/pg_upgrade/option.c 2022-10-10 16:57:37.000000000 -0400 +++ postgresql-15.0/src/bin/pg_upgrade/option.c 2022-10-13 10:41:35.916076889 -0400 @@ -95,10 +95,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:kNo: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-15.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.4--> <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.4--> <PhoronixTestSuite> <TestInformation> <Title>PostgreSQL</Title> <AppVersion>15</AppVersion> <Description>This is a benchmark of PostgreSQL using the integrated pgbench for facilitating the database benchmarks.</Description> <ResultScale>TPS</ResultScale> <Proportion>HIB</Proportion> <TimesToRun>3</TimesToRun> </TestInformation> <TestProfile> <Version>1.12.0</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>https://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>