PostgreSQL

PostgreSQL
Developer(s) PostgreSQL Global Development Group
Initial release 8 July 1996 (1996-07-08)[1]
Stable release
10.5 / 9 August 2018 (2018-08-09)[2]
Preview release
11 RC1 / 11 October 2018 (2018-10-11)[3]
Repository Edit this at Wikidata
Written in C
Operating system Most Unix-like operating systems and Windows
Type ORDBMS
License PostgreSQL License (free and open-source, permissive)[4][5][6]
Website postgresql.org
PostgreSQL License[4]
DFSG compatible Yes[7][8]
FSF approved Yes[9]
OSI approved Yes[6]
GPL compatible Yes
Copyleft No
Linking from code with a different license Yes
Website postgresql.org/about/licence

PostgreSQL, often simply Postgres, is an object-relational database management system (ORDBMS) with an emphasis on extensibility and standards compliance. It can handle workloads ranging from small single-machine applications to large Internet-facing applications (or for data warehousing) with many concurrent users; on macOS Server, PostgreSQL is the default database;[10][11][12] and it is also available for Microsoft Windows and Linux (supplied in most distributions).

PostgreSQL is ACID-compliant and transactional. PostgreSQL has updatable views and materialized views, triggers, foreign keys; supports functions and stored procedures, and other expandability.[13]

PostgreSQL is developed by the PostgreSQL Global Development Group, a diverse group of many companies and individual contributors.[14] It is free and open-source, released under the terms of the PostgreSQL License, a permissive software license.

Name

PostgreSQL's developers pronounce PostgreSQL as /ˈpstɡrɛs ˌkjuː ˈɛl/.[15] It is abbreviated as Postgres because of ubiquitous support for the SQL standard among (at least early version of) most relational databases. PostgreSQL implements features of old and up to later versions. Originally named POSTGRES, the name (Post Ingres) refers to the project's origins in that database which was developed at University of California, Berkeley.[16][17] The community considered changing the name back to Postgres; however, the PostgreSQL Core Team announced in 2007 that the product would continue to use the name PostgreSQL.[18]

History

PostgreSQL evolved from the Ingres project at the University of California, Berkeley. In 1982, the leader of the Ingres team, Michael Stonebraker, left Berkeley to make a proprietary version of Ingres.[16] He returned to Berkeley in 1985, and started a post-Ingres project to address the problems with contemporary database systems that had become increasingly clear during the early 1980s. He got the Turing Award in 2014 for e.g. these projects[19] and techniques pioneered in them.

The new project, POSTGRES, aimed to add the fewest features needed to completely support types.[20] These features included the ability to define types and to fully describe relationships  something used widely before but maintained entirely by the user. In POSTGRES, the database understood relationships, and could retrieve information in related tables in a natural way using rules. POSTGRES used many of the ideas of Ingres, but not its code.[21]

Starting in 1986, the POSTGRES team published a number of papers describing the basis of the system, and by 1987 had a prototype version shown at the 1988 ACM SIGMOD Conference. The team released version 1 to a small number of users in June 1989, then version 2 with a re-written rules system in June 1990. Version 3, released in 1991, again re-wrote the rules system, and added support for multiple storage managers and an improved query engine. By 1993, the great number of users began to overwhelm the project with requests for support and features. After releasing version 4.2[22] on June 30, 1994  primarily a cleanup  the project ended. Berkeley had released POSTGRES under an MIT-style license, which enabled other developers to use the code for any use. At the time, POSTGRES used an Ingres-influenced POSTQUEL query language interpreter, which could be interactively used with a console application named monitor.

In 1994, Berkeley graduate students Andrew Yu and Jolly Chen replaced the POSTQUEL query language interpreter with one for the SQL query language, creating Postgres95. The front-end program monitor was also replaced by psql. Yu and Chen announced the first version (0.01) to beta testers on May 5, 1995. Version 1.0 of Postgres95 was announced on September 5, 1995, with a more liberal license that enabled the software to be freely modifiable for any purpose.

On July 8, 1996, Marc Fournier at Hub.org Networking Services provided the first non-university development server for the open-source development effort.[1] With the participation of Bruce Momjian and Vadim B. Mikheev, work began to stabilize the code inherited from Berkeley.

In 1996, the project was renamed to PostgreSQL to reflect its support for SQL. The online presence at the website PostgreSQL.org began on October 22, 1996.[23] The first PostgreSQL release formed version 6.0 on January 29, 1997. Since then a group of developers and volunteers around the world have maintained the software as The PostgreSQL Global Development Group.[14]

The PostgreSQL project continues to make major releases (approximately annually) and minor bugfix releases, all available under its free and open-source software PostgreSQL License. Code comes from contributions from proprietary vendors, support companies, and open-source programmers at large.

Development

PostgreSQL does not have a bug tracker (while it "has a bug-submission form that feeds into the pgsql-bugs mailing list"), making it quite difficult to know the status of bugs.[24]

Multiversion concurrency control (MVCC)

PostgreSQL manages concurrency through a system known as multiversion concurrency control (MVCC), which gives each transaction a "snapshot" of the database, allowing changes to be made without being visible to other transactions until the changes are committed. This largely eliminates the need for read locks, and ensures the database maintains the ACID (atomicity, consistency, isolation, durability) principles in an efficient manner. PostgreSQL offers three levels of transaction isolation: Read Committed, Repeatable Read and Serializable. Because PostgreSQL is immune to dirty reads, requesting a Read Uncommitted transaction isolation level provides read committed instead. PostgreSQL supports full serializability via the serializable snapshot isolation (SSI) technique.[25]

Storage and replication

Replication

PostgreSQL includes built-in binary replication based on shipping the changes (write-ahead logs) to replica nodes asynchronously, with the ability to run read-only queries against these replicated nodes. This allows splitting read traffic among multiple nodes efficiently. Earlier replication software that allowed similar read scaling normally relied on adding replication triggers to the master, introducing additional load onto it.

PostgreSQL also includes built-in synchronous replication[26] that ensures that, for each write transaction, the master waits until at least one replica node has written the data to its transaction log. Unlike other database systems, the durability of a transaction (whether it is asynchronous or synchronous) can be specified per-database, per-user, per-session or even per-transaction. This can be useful for work loads that do not require such guarantees, and may not be wanted for all data as it will have some negative effect on performance due to the requirement of the confirmation of the transaction reaching the synchronous standby.

There can be a mixture of synchronous and asynchronous standby servers. A list of synchronous standby servers can be specified in the configuration which determines which servers are candidates for synchronous replication. The first in the list which is currently connected and actively streaming is the one that will be used as the current synchronous server. When this fails, it falls to the next in line.

Synchronous multi-master replication is currently not included in the PostgreSQL core. Postgres-XC which is based on PostgreSQL provides scalable synchronous multi-master replication,[27] available in version 1.2.1 (April 2015 version) is licensed under the same license as PostgreSQL. A similar project is called Postgres-XL. Postgres-R is yet another older fork.[28] Bi-directional replication (BDR) is an asynchronous multi-master replication system for PostgreSQL.[29]

The community has also written some tools to make managing replication clusters easier, such as repmgr.

There are also several asynchronous trigger-based replication packages for PostgreSQL. These remain useful even after introduction of the expanded core capabilities, for situations where binary replication of an entire database cluster is not the appropriate approach:

Indexes

PostgreSQL includes built-in support for regular B-tree and hash indexes, and four index access methods: generalized search trees (GiST), generalized inverted indexes (GIN), Space-Partitioned GiST (SP-GiST)[31] and Block Range Indexes (BRIN). Hash indexes are implemented, but discouraged because they cannot be recovered after a crash or power loss, although this will no longer be the case from version 10.[32] In addition, user-defined index methods can be created, although this is quite an involved process. Indexes in PostgreSQL also support the following features:

  • Expression indexes can be created with an index of the result of an expression or function, instead of simply the value of a column.
  • Partial indexes, which only index part of a table, can be created by adding a WHERE clause to the end of the CREATE INDEX statement. This allows a smaller index to be created.
  • The planner is capable of using multiple indexes together to satisfy complex queries, using temporary in-memory bitmap index operations (useful in data warehousing applications for joining a large fact table to smaller dimension tables such as those arranged in a star schema).
  • k-nearest neighbors (k-NN) indexing (also referred to KNN-GiST[33]) provides efficient searching of "closest values" to that specified, useful to finding similar words, or close objects or locations with geospatial data. This is achieved without exhaustive matching of values.
  • Index-only scans often allow the system to fetch data from indexes without ever having to access the main table.
  • PostgreSQL 9.5 introduced Block Range Indexes (BRIN).

Schemas

In PostgreSQL, a schema holds all objects (with the exception of roles and tablespaces). Schemas effectively act like namespaces, allowing objects of the same name to co-exist in the same database. By default, newly created databases have a schema called "public", but any additional schemas can be added, and the public schema isn't mandatory.

A "search_path" setting determines the order in which PostgreSQL checks schemas for unqualified objects (those without a prefixed schema). By default, it is set to "$user, public" ($user refers to the currently connected database user). This default can be set on a database or role level, but as it is a session parameter, it can be freely changed (even multiple times) during a client session, affecting that session only.

Non-existent schemas listed in search_path are silently skipped during objects lookup.

New objects are created in whichever valid schema (one that presently exists) appears first in the search_path.Schema is an outline of database.

Data types

A wide variety of native data types are supported, including:

  • Boolean
  • Arbitrary precision numerics
  • Character (text, varchar, char)
  • Binary
  • Date/time (timestamp/time with/without timezone, date, interval)
  • Money
  • Enum
  • Bit strings
  • Text search type
  • Composite
  • HStore, an extension enabled key-value store within PostgreSQL[34]
  • Arrays (variable length and can be of any data type, including text and composite types) up to 1 GB in total storage size
  • Geometric primitives
  • IPv4 and IPv6 addresses
  • CIDR blocks and MAC addresses
  • XML supporting XPath queries
  • UUID
  • JSON, and a faster binary JSONB (since version 9.4; not the same as BSON[35])

In addition, users can create their own data types which can usually be made fully indexable via PostgreSQL's indexing infrastructures  GiST, GIN, SP-GiST. Examples of these include the geographic information system (GIS) data types from the PostGIS project for PostgreSQL.

There is also a data type called a "domain", which is the same as any other data type but with optional constraints defined by the creator of that domain. This means any data entered into a column using the domain will have to conform to whichever constraints were defined as part of the domain.

A data type that represents a range of data can be used which are called range types. These can be discrete ranges (e.g. all integer values 1 to 10) or continuous ranges (e.g. any point in time between 10:00 am and 11:00 am). The built-in range types available include ranges of integers, big integers, decimal numbers, time stamps (with and without time zone) and dates.

Custom range types can be created to make new types of ranges available, such as IP address ranges using the inet type as a base, or float ranges using the float data type as a base. Range types support inclusive and exclusive range boundaries using the [] and () characters respectively. (e.g. '[4,9)' represents all integers starting from and including 4 up to but not including 9.) Range types are also compatible with existing operators used to check for overlap, containment, right of etc.

User-defined objects

New types of almost all objects inside the database can be created, including:

  • Casts
  • Conversions
  • Data types
  • Domains
  • Functions, including aggregate functions and window functions
  • Indexes including custom indexes for custom types
  • Operators (existing ones can be overloaded)
  • Procedural languages

Inheritance

Tables can be set to inherit their characteristics from a "parent" table. Data in child tables will appear to exist in the parent tables, unless data is selected from the parent table using the ONLY keyword, i.e. SELECT * FROM ONLY parent_table;. Adding a column in the parent table will cause that column to appear in the child table.

Inheritance can be used to implement table partitioning, using either triggers or rules to direct inserts to the parent table into the proper child tables.

As of 2010, this feature is not fully supported yet  in particular, table constraints are not currently inheritable. All check constraints and not-null constraints on a parent table are automatically inherited by its children. Other types of constraints (unique, primary key, and foreign key constraints) are not inherited.

Inheritance provides a way to map the features of generalization hierarchies depicted in entity relationship diagrams (ERDs) directly into the PostgreSQL database.

Other storage features

  • Referential integrity constraints including foreign key constraints, column constraints, and row checks
  • Binary and textual large-object storage
  • Tablespaces
  • Per-column collation
  • Online backup
  • Point-in-time recovery, implemented using write-ahead logging
  • In-place upgrades with pg_upgrade for less downtime (supports upgrades from 8.3.x and later)

Control and connectivity

Foreign data wrappers

PostgreSQL can link to other systems to retrieve data via foreign data wrappers (FDWs).[36] These can take the form of any data source, such as a file system, another RDBMS, or a web service. This means that regular database queries can use these data sources like regular tables, and even join multiple data-sources together.

Interfaces

PostgreSQL has several interfaces available and is also widely supported among programming language libraries. Built-in interfaces include libpq (PostgreSQL's official C application interface) and ECPG (an embedded C system). External interfaces include:

  • libpqxx: C++ interface
  • Pgfe: C++ interface
  • PostgresDAC: PostgresDAC (for Embarcadero RadStudio/Delphi/CBuilder XE-XE3)
  • DBD::Pg: Perl DBI driver
  • JDBC: JDBC interface
  • Lua: Lua interface
  • Npgsql: .NET data provider
  • ST-Links SpatialKit: Link Tool to ArcGIS
  • PostgreSQL.jl: Julia interface
  • node-postgres: Node.js interface
  • pgoledb: OLEDB interface
  • psqlODBC: ODBC interface
  • psycopg2:[37] Python interface (also used by HTSQL)
  • pgtclng: Tcl interface
  • pyODBC: Python library
  • php5-pgsql: PHP driver based on libpq
  • postmodern: A Common Lisp interface
  • pq: A pure Go PostgreSQL driver for the Go database/sql package. The driver passes the compatibility test suite.[38]
  • RPostgreSQL: R interface[39]
  • dpq: D interface to libpq
  • epgsql: Erlang interface

Procedural languages

Procedural languages allow developers to extend the database with custom subroutines (functions), often called stored procedures. These functions can be used to build triggers (functions invoked upon modification of certain data) and custom aggregate functions. Procedural languages can also be invoked without defining a function, using the "DO" command at SQL level.

Languages are divided into two groups: "Safe" languages are sandboxed and can be safely used by any user. Procedures written in "unsafe" languages can only be created by superusers, because they allow bypassing the database's security restrictions, but can also access sources external to the database. Some languages like Perl provide both safe and unsafe versions.

PostgreSQL has built-in support for three procedural languages:

  • Plain SQL (safe). Simpler SQL functions can get expanded inline into the calling (SQL) query, which saves function call overhead and allows the query optimizer to "see inside" the function.
  • PL/pgSQL (safe), which resembles Oracle's PL/SQL procedural language and SQL/PSM.
  • C (unsafe), which allows loading custom shared libraries into the database. Functions written in C offer the best performance, but bugs in code can crash and potentially corrupt the database. Most built-in functions are written in C.

In addition, PostgreSQL allows procedural languages to be loaded into the database through extensions. Three language extensions are included with PostgreSQL to support Perl, Python and Tcl. There are external projects to add support for many other languages,[40] including Java, JavaScript (PL/V8), R, Ruby, and others.

Triggers

Triggers are events triggered by the action of SQL DML statements. For example, an INSERT statement might activate a trigger that checks if the values of the statement are valid. Most triggers are only activated by either INSERT or UPDATE statements.

Triggers are fully supported and can be attached to tables. Triggers can be per-column and conditional, in that UPDATE triggers can target specific columns of a table, and triggers can be told to execute under a set of conditions as specified in the trigger's WHERE clause. Triggers can be attached to views by using the INSTEAD OF condition. Multiple triggers are fired in alphabetical order. In addition to calling functions written in the native PL/pgSQL, triggers can also invoke functions written in other languages like PL/Python or PL/Perl.

Asynchronous notifications

PostgreSQL provides an asynchronous messaging system that is accessed through the NOTIFY, LISTEN and UNLISTEN commands. A session can issue a NOTIFY command, along with the user-specified channel and an optional payload, to mark a particular event occurring. Other sessions are able to detect these events by issuing a LISTEN command, which can listen to a particular channel. This functionality can be used for a wide variety of purposes, such as letting other sessions know when a table has updated or for separate applications to detect when a particular action has been performed. Such a system prevents the need for continuous polling by applications to see if anything has yet changed, and reducing unnecessary overhead. Notifications are fully transactional, in that messages are not sent until the transaction they were sent from is committed. This eliminates the problem of messages being sent for an action being performed which is then rolled back.

Many of the connectors for PostgreSQL provide support for this notification system (including libpq, JDBC, Npgsql, psycopg and node.js) so it can be used by external applications.

Rules

Rules allow the "query tree" of an incoming query to be rewritten. Rules, or more properly, "Query Re-Write Rules", are attached to a table/class and "Re-Write" the incoming DML (select, insert, update, and/or delete) into one or more queries that either replace the original DML statement or execute in addition to it. Query Re-Write occurs after DML statement parsing, but before query planning.

Other querying features

  • Transactions
  • Full text search
  • Views
    • Materialized views[41]
    • Updateable views[42]
    • Recursive views[43]
  • Inner, outer (full, left and right), and cross joins
  • Sub-selects
    • Correlated sub-queries[44]
  • Regular expressions[45]
  • Common table expressions and writable common table expressions
  • Encrypted connections via TLS (current versions do not use vulnerable SSL, even with that configuration option)[46]
  • Domains
  • Savepoints
  • Two-phase commit
  • TOAST (The Oversized-Attribute Storage Technique) is used to transparently store large table attributes (such as big MIME attachments or XML messages) in a separate area, with automatic compression.
  • Embedded SQL is implemented using preprocessor. SQL code is first written embedded into C code. Then code is run through ECPG preprocessor, which replaces SQL with calls to code library. Then code can be compiled using a C compiler. Embedding works also with C++ but it does not recognize all C++ constructs.

Concurrency model

PostgreSQL server is process-based (not threaded), and uses one operating system process per database session. Multiple sessions are automatically spread across all available CPUs by the operating system. Starting with PostgreSQL 9.6, many types of queries can also be parallelized across multiple background worker processes, taking advantage of multiple CPUs or cores.[47] Client applications can use threads and create multiple database connections from each thread.[48]

Security

PostgreSQL manages its internal security on a per-role basis. A role is generally regarded to be a user (a role that can log in), or a group (a role of which other roles are members). Permissions can be granted or revoked on any object down to the column level, and can also allow/prevent the creation of new objects at the database, schema or table levels.

PostgreSQL's SECURITY LABEL feature (extension to SQL standards), allows for additional security; with a bundled loadable module that supports label-based mandatory access control (MAC) based on SELinux security policy.[49][50]

PostgreSQL natively supports a broad number of external authentication mechanisms, including:

The GSSAPI, SSPI, Kerberos, peer, ident and certificate methods can also use a specified "map" file that lists which users matched by that authentication system are allowed to connect as a specific database user.

These methods are specified in the cluster's host-based authentication configuration file (pg_hba.conf), which determines what connections are allowed. This allows control over which user can connect to which database, where they can connect from (IP address/IP address range/domain socket), which authentication system will be enforced, and whether the connection must use TLS.

Standards compliance

PostgreSQL claims high, but not complete, conformance with the SQL standard. One exception is the handling of unquoted identifiers like table or column names. In PostgreSQL they are folded  internal  to lower case characters[51] whereas the standard says that unquoted identifiers should be folded to upper case. Thus, Foo should be equivalent to FOO not foo according to the standard.

Benchmarks and performance

Many informal performance studies of PostgreSQL have been done.[52] Performance improvements aimed at improving scalability started heavily with version 8.1. Simple benchmarks between version 8.0 and version 8.4 showed that the latter was more than 10 times faster on read-only workloads and at least 7.5 times faster on both read and write workloads.[53]

The first industry-standard and peer-validated benchmark was completed in June 2007, using the Sun Java System Application Server (proprietary version of GlassFish) 9.0 Platform Edition, UltraSPARC T1-based Sun Fire server and PostgreSQL 8.2.[54] This result of 778.14 SPECjAppServer2004 JOPS@Standard compares favourably with the 874 JOPS@Standard with Oracle 10 on an Itanium-based HP-UX system.[52]

In August 2007, Sun submitted an improved benchmark score of 813.73 SPECjAppServer2004 JOPS@Standard. With the system under test at a reduced price, the price/performance improved from $84.98/JOPS to $70.57/JOPS.[55]

The default configuration of PostgreSQL uses only a small amount of dedicated memory for performance-critical purposes such as caching database blocks and sorting. This limitation is primarily because older operating systems required kernel changes to allow allocating large blocks of shared memory.[56] PostgreSQL.org provides advice on basic recommended performance practice in a wiki.[57]

In April 2012, Robert Haas of EnterpriseDB demonstrated PostgreSQL 9.2's linear CPU scalability using a server with 64 cores.[58]

Matloob Khushi performed benchmarking between Postgresql 9.0 and MySQL 5.6.15 for their ability to process genomic data. In his performance analysis he found that PostgreSQL extracts overlapping genomic regions eight times faster than MySQL using two datasets of 80,000 each forming random human DNA regions. Insertion and data uploads in PostgreSQL were also better, although general searching capability of both databases was almost equivalent.[59]

Reliability

When PostgreSQL is running on Linux, data loss can happen on hardware write failures due to Linux bugs.[60]

Platforms

PostgreSQL is available for the following operating systems: Linux (all recent distributions), Windows (Windows 2000 SP4 and later; compilable by e.g. Visual Studio, now with up to most recent 2017 version), FreeBSD, OpenBSD,[61] NetBSD, OS X (macOS),[12] AIX, HP-UX, Solaris, and UnixWare; and not officially tested: DragonFly BSD, BSD/OS, IRIX, OpenIndiana,[62] OpenSolaris, OpenServer, and Tru64 Unix. Most other Unix-like systems could also work; most modern do support.

PostgreSQL works on any of the following instruction set architectures: x86 and x86-64 on Windows and other operating systems; these are supported on other than Windows: IA-64 Itanium (external support for HP-UX), PowerPC, PowerPC 64, S/390, S/390x, SPARC, SPARC 64, ARMv8-A (64-bit)[63] and older ARM (32-bit, including older such as ARMv6 in Raspberry Pi[64]), MIPS, MIPSel, and PA-RISC. It is also known to work on Alpha (dropped in 9.5), M68k, M32R, NS32k, and VAX. In addition to these, it is possible to build PostgreSQL for an unsupported CPU by disabling spinlocks.[65]

Database administration

Open source front-ends and tools for administering PostgreSQL include:

psql
The primary front-end for PostgreSQL is the psql command-line program, which can be used to enter SQL queries directly, or execute them from a file. In addition, psql provides a number of meta-commands and various shell-like features to facilitate writing scripts and automating a wide variety of tasks; for example tab completion of object names and SQL syntax.
pgAdmin
The pgAdmin package is a free and open-source graphical user interface administration tool for PostgreSQL, which is supported on many computer platforms.[66] The program is available in more than a dozen languages. The first prototype, named pgManager, was written for PostgreSQL 6.3.2 from 1998, and rewritten and released as pgAdmin under the GNU General Public License (GPL) in later months. The second incarnation (named pgAdmin II) was a complete rewrite, first released on January 16, 2002. The third version, pgAdmin III, was originally released under the Artistic License and then released under the same license as PostgreSQL. Unlike prior versions that were written in Visual Basic, pgAdmin III is written in C++, using the wxWidgets[67] framework allowing it to run on most common operating systems. The query tool includes a scripting language called pgScript for supporting admin and development tasks. In December 2014, Dave Page, the pgAdmin project founder and primary developer,[68] announced that with the shift towards web-based models work has started on pgAdmin 4 with the aim of facilitating Cloud deployments.[69] In 2016, pgAdmin 4 was released. pgAdmin 4 backend was written in Python, using Flask and Qt framework.[70].
phpPgAdmin
phpPgAdmin is a web-based administration tool for PostgreSQL written in PHP and based on the popular phpMyAdmin interface originally written for MySQL administration.[71]
PostgreSQL Studio
PostgreSQL Studio allows users to perform essential PostgreSQL database development tasks from a web-based console. PostgreSQL Studio allows users to work with cloud databases without the need to open firewalls.[72]
TeamPostgreSQL
AJAX/JavaScript-driven web interface for PostgreSQL. Allows browsing, maintaining and creating data and database objects via a web browser. The interface offers tabbed SQL editor with auto-completion, row-editing widgets, click-through foreign key navigation between rows and tables, 'favorites' management for commonly used scripts, among other features. Supports SSH for both the web interface and the database connections. Installers are available for Windows, Mac and Linux, as well as a simple cross-platform archive that runs from a script.[73]
LibreOffice/OpenOffice.org Base
LibreOffice/OpenOffice.org Base can be used as a front-end for PostgreSQL.[74][75]
pgBadger
The pgBadger PostgreSQL log analyzer generates detailed reports from a PostgreSQL log file.[76]
pgDevOps
pgDevOps is a suite of web tools to install & manage multiple PostgreSQL versions, extensions, and community components, develop SQL queries, monitor running databases and find performance problems.[77]

A number of companies offer proprietary tools for PostgreSQL. They often consist of a universal core that is adapted for various specific database products. These tools mostly share the administration features with the open source tools but offer improvements in data modeling, importing, exporting or reporting.

Prominent users

Prominent organizations and products that use PostgreSQL as the primary database include:

Service implementations

Some notable vendors offer PostgreSQL as software as a service:

  • Heroku, a platform as a service provider, has supported PostgreSQL since the start in 2007.[101] They offer value-add features like full database "roll-back" (ability to restore a database from any point in time),[102] which is based on WAL-E, open-source software developed by Heroku.[103]
  • In January 2012, EnterpriseDB released a cloud version of both PostgreSQL and their own proprietary Postgres Plus Advanced Server with automated provisioning for failover, replication, load-balancing, and scaling. It runs on Amazon Web Services.[104]
  • VMware has offered vFabric Postgres (also known as vPostgres[105]) for private clouds on vSphere since May 2012.[106]
  • In November 2013, Amazon.com announced the addition of PostgreSQL to their Relational Database Service offering.[107][108]
  • In November 2016, Amazon Web Services announced the addition of PostgreSQL compatibility to their cloud-native Amazon Aurora managed database offering.[109]

Release history

Release First release Latest minor version Latest release End of
Life[110]
Milestones
6.0 1997-01-29 N/A N/A N/A First formal release of PostgreSQL, unique indexes, pg_dumpall utility, ident authentication
6.1 1997-06-08 Old version, no longer supported: 6.1.1 1997-07-22 N/A Multi-column indexes, sequences, money data type, GEQO (GEnetic Query Optimizer)
6.2 1997-10-02 Old version, no longer supported: 6.2.1 1997-10-17 N/A JDBC interface, triggers, server programming interface, constraints
6.3 1998-03-01 Old version, no longer supported: 6.3.2 1998-04-07 2003-04 SQL-92 subselect capability, PL/pgTCL
6.4 1998-10-30 Old version, no longer supported: 6.4.2 1998-12-20 2003-10 VIEWs (then only read-only) and RULEs, PL/pgSQL
6.5 1999-06-09 Old version, no longer supported: 6.5.3 1999-10-13 2004-06 MVCC, temporary tables, more SQL statement support (CASE, INTERSECT, and EXCEPT)
7.0 2000-05-08 Old version, no longer supported: 7.0.3 2000-11-11 2004-05 Foreign keys, SQL-92 syntax for joins
7.1 2001-04-13 Old version, no longer supported: 7.1.3 2001-08-15 2006-04 Write-ahead log, outer joins
7.2 2002-02-04 Old version, no longer supported: 7.2.8 2005-05-09 2007-02 PL/Python, OIDs no longer required, internationalization of messages
7.3 2002-11-27 Old version, no longer supported: 7.3.21 2008-01-07 2007-11 Schema, table function, prepared query[111]
7.4 2003-11-17 Old version, no longer supported: 7.4.30 2010-10-04 2010-10 Optimization on JOINs and data warehousing functions[112]
8.0 2005-01-19 Old version, no longer supported: 8.0.26 2010-10-04 2010-10 Native server on Microsoft Windows, savepoints, tablespaces, point-in-time recovery[113]
8.1 2005-11-08 Old version, no longer supported: 8.1.23 2010-12-16 2010-11 Performance optimization, two-phase commit, table partitioning, index bitmap scan, shared row locking, roles
8.2 2006-12-05 Old version, no longer supported: 8.2.23 2011-09-26 2011-12 Performance optimization, online index builds, advisory locks, warm standby[114]
8.3 2008-02-04 Old version, no longer supported: 8.3.23 2013-02-07 2013-12 Heap-only tuples, full text search,[115] SQL/XML, ENUM types, UUID types
8.4 2009-07-01 Old version, no longer supported: 8.4.22 2014-07-24 2014-07 Windowing functions, column-level permissions, parallel database restore, per-database collation, common table expressions and recursive queries[116]
9.0 2010-09-20 Old version, no longer supported: 9.0.23 2015-10-08 2015-09 Built-in binary streaming replication, hot standby, in-place upgrade capability, 64-bit Windows[117]
9.1 2011-09-12 Old version, no longer supported: 9.1.24 2016-10-27 2016-09 Synchronous replication, per-column collations, unlogged tables, serializable snapshot isolation, writeable common table expressions, SELinux integration, extensions, foreign tables[118]
9.2 2012-09-10[119] Old version, no longer supported: 9.2.24 2017-11-09 2017-09 Cascading streaming replication, index-only scans, native JSON support, improved lock management, range types, pg_receivexlog tool, space-partitioned GiST indexes
9.3 2013-09-09 Older version, yet still supported: 9.3.24 2018-08-09 2018-09 Custom background workers, data checksums, dedicated JSON operators, LATERAL JOIN, faster pg_dump, new pg_isready server monitoring tool, trigger features, view features, writeable foreign tables, materialized views, replication improvements
9.4 2014-12-18 Older version, yet still supported: 9.4.19 2018-08-09 2019-12 JSONB data type, ALTER SYSTEM statement for changing config values, ability to refresh materialized views without blocking reads, dynamic registration/start/stop of background worker processes, Logical Decoding API, GiN index improvements, Linux huge page support, database cache reloading via pg_prewarm, reintroducing Hstore as the column type of choice for document-style data.[120]
9.5 2016-01-07 Older version, yet still supported: 9.5.14 2018-08-09 2021-01 UPSERT, row level security, TABLESAMPLE, CUBE/ROLLUP, GROUPING SETS, and new BRIN index[121]
9.6 2016-09-29 Older version, yet still supported: 9.6.10 2018-08-09 2021-09 Parallel query support, PostgreSQL foreign data wrapper (FDW) improvements with sort/join pushdown, multiple synchronous standbys, faster vacuuming of large table
10 2017-10-05 Current stable version: 10.5 2018-08-09 2022-10 Logical replication, declarative table partitioning, improved query parallelism
11 Latest preview version of a future release: 11 RC1 2018-10-11
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

See also

References

  1. 1 2 "Happy Birthday, PostgreSQL!". PostgreSQL Global Development Group. July 8, 2008.
  2. "PostgreSQL 10.5, 9.6.10, 9.5.14, 9.4.19, 9.3.24, and 11 Beta 3 Released!". PostgreSQL. The PostgreSQL Global Development Group. 2018-08-09. Retrieved 2018-08-10.
  3. "PostgreSQL 11 RC1 Released!". PostgreSQL. The PostgreSQL Global Development Group. 2018-10-11. Retrieved 2018-10-12.
  4. 1 2 "License". PostgreSQL Global Development Group. Retrieved 2010-09-20.
  5. "PostgreSQL licence approved by OSI". Crynwr. 2010-02-18. Retrieved 2010-02-18.
  6. 1 2 "OSI PostgreSQL Licence". Open Source Initiative. 2010-02-20. Retrieved 2010-02-20.
  7. "Debian -- Details of package postgresql in sid". debian.org.
  8. "Licensing:Main". FedoraProject.
  9. "PostgreSQL". fsf.org.
  10. "OS X Lion Server — Technical Specifications". 2011-08-04. Retrieved 2011-11-12. Web Hosting [..] PostgreSQL
  11. "Lion Server: MySQL not included". 2011-08-04. Retrieved 2011-11-12.
  12. 1 2 "Mac OS X packages". The PostgreSQL Global Development Group. Retrieved 27 August 2016.
  13. "What is PostgreSQL?". PostgreSQL 9.3.0 Documentation. PostgreSQL Global Development Group. Retrieved 2013-09-20.
  14. 1 2 "Contributor Profiles". PostgreSQL Global Development Group. Retrieved 2017-03-14.
  15. Audio sample, 5.6k MP3
  16. 1 2 Stonebraker, M; Rowe, LA (May 1986). The design of POSTGRES (PDF). Proc. 1986 ACM SIGMOD Conference on Management of Data. Washington, DC. Retrieved 2011-12-17.
  17. "PostgreSQL: History". PostgreSQL Global Development Group. Retrieved 27 August 2016.
  18. "Project name – statement from the core team". archives.postgresql.org. 2007-11-16. Retrieved 2007-11-16.
  19. "Michael Stonebraker - A.M. Turing Award Winner". amturing.acm.org. Retrieved 2018-03-20. Techniques pioneered in Postgres were widely implemented [..] Stonebraker is the only Turing award winner to have engaged in serial entrepreneurship on anything like this scale, giving him a distinctive perspective on the academic world.
  20. Stonebraker, M; Rowe, LA. The POSTGRES data model (PDF). Proceedings of the 13th International Conference on Very Large Data Bases. Brighton, England: Morgan Kaufmann Publishers. pp. 83–96. ISBN 0-934613-46-X.
  21. Pavel Stehule (9 June 2012). "Historie projektu PostgreSQL" (in Czech).
  22. "University POSTGRES, Version 4.2". 1999-07-26.
  23. Page, Dave (2015-04-07). "Re: 20th anniversary of PostgreSQL ?". pgsql-advocacy (Mailing list). Retrieved 9 April 2015.
  24. Jake Edge (October 14, 2015). "A bug tracker for PostgreSQL? [LWN.net]". lwn.net. Retrieved 2017-10-20.
  25. Dan R. K. Ports; Kevin Grittner (2012). "Serializable Snapshot Isolation in PostgreSQL" (PDF). Proceedings of the VLDB Endowment. 5 (12): 1850–1861. arXiv:1208.4179. doi:10.14778/2367502.2367523.
  26. PostgreSQL 9.1 with synchronous replication (news), H Online
  27. Postgres-XC project page (website), Postgres-XC, archived from the original on July 1, 2012
  28. "Postgres-R: a database replication system for PostgreSQL". Postgres Global Development Group. Retrieved 27 August 2016.
  29. "Postgres-BDR". 2ndQuadrant Ltd. Retrieved 27 August 2016.
  30. Marit Fischer (November 10, 2007). "Backcountry.com finally gives something back to the open source community" (Press release). Backcountry.com. Archived from the original on December 26, 2010.
  31. Bartunov, O; Sigaev, T (May 2011). SP-GiST  a new indexing framework for PostgreSQL (PDF). PGCon 2011. Ottawa, Canada. Retrieved 2016-01-31.
  32. "hash: Add write-ahead logging support". PostgreSQL. 2017-03-14. Retrieved 2017-06-09.
  33. Bartunov, O; Sigaev, T (May 2010). K-nearest neighbour search for PostgreSQL (PDF). PGCon 2010. Ottawa, Canada. Retrieved 2016-01-31.
  34. https://www.linuxjournal.com/content/postgresql-nosql-database
  35. Geoghegan, Peter (March 23, 2014). "What I think of jsonb".
  36. Obe, Regina; Hsu, Leo S. (2012). "10: Replication and External Data". PostgreSQL: Up and Running (1 ed.). Sebastopol, CA: O'Reilly Media, Inc. p. 129. ISBN 978-1-4493-2633-3. Retrieved 2016-10-17. Foreign Data Wrappers (FDW) [...] are mechanisms of querying external datasources. PostgreSQL 9.1 introduced this SQL/MED standards compliant feature.
  37. "PostgreSQL + Python | Psycopg". initd.org.
  38. "SQL database drivers". Go wiki. golang.org. Retrieved 22 June 2015.
  39. "RPostgreSQL: R Interface to the 'PostgreSQL' Database System". CRAN. cran.r-project.org. Retrieved 3 August 2017.
  40. "Procedural Languages". postgresql.org. 2016-03-31. Retrieved 2016-04-07.
  41. "Add a materialized view relations". 2013-03-04. Retrieved 2013-03-04.
  42. "Support automatically-updatable views". 2012-12-08. Retrieved 2012-12-08.
  43. "Add CREATE RECURSIVE VIEW syntax". 2013-02-01. Retrieved 2013-02-28.
  44. Momjian, Bruce (2001). "Subqueries". PostgreSQL: Introduction and Concepts. Addison-Wesley. ISBN 0-201-70331-9. Archived from the original on August 9, 2010. Retrieved September 25, 2010.
  45. Bernier, Robert (February 2, 2006). "Using Regular Expressions in PostgreSQL". O'Reilly Media. Retrieved 2010-09-25.
  46. "A few short notes about PostgreSQL and POODLE". hagander.net.
  47. Berkus, Josh (2 June 2016). "PostgreSQL 9.6 Beta and PGCon 2016". LWN.net.
  48. "FAQ - PostgreSQL wiki". wiki.postgresql.org. Retrieved 2017-04-13.
  49. "SEPostgreSQL Documentation".
  50. "NB SQL 9.3".
  51. "Case sensitivity of identifiers". PostgreSQL Global Development Group.
  52. 1 2 Josh Berkus (July 6, 2007). "PostgreSQL publishes first real benchmark". Archived from the original on July 12, 2007. Retrieved July 10, 2007.
  53. György Vilmos (2009-09-29). "PostgreSQL history". Retrieved 2010-08-28.
  54. "SPECjAppServer2004 Result". SPEC. 2007-07-06. Retrieved 2007-07-10.
  55. "SPECjAppServer2004 Result". SPEC. 2007-07-04. Retrieved 2007-09-01.
  56. "Managing Kernel Resources". PostgreSQL Manual. PostgreSQL.org. Retrieved November 12, 2011.
  57. Greg Smith (15 October 2010). PostgreSQL 9.0 High Performance. Packt Publishing. ISBN 978-1-84951-030-1.
  58. Robert Haas (2012-04-03). "Did I Say 32 Cores? How about 64?". Retrieved 2012-04-08.
  59. Khushi, Matloob (June 2015). "Benchmarking database performance for genomic data". J Cell Biochem. 116: 877–83. doi:10.1002/jcb.25049. PMID 25560631.
  60. PostgreSQL's fsync() surprise
  61. "postgresql-client-10.5p1 – PostgreSQL RDBMS (client)". OpenBSD ports. 2018-10-04. Retrieved 2018-10-10.
  62. "oi_151a Release Notes". OpenIndiana. Retrieved 2012-04-07.
  63. "AArch64 planning BoF at DebConf". debian.org.
  64. Souza, Rubens (17 June 2015). "Step 5 (update): Installing PostgreSQL on my Raspberry Pi 1 and 2". Raspberry PG. Retrieved 27 August 2016.
  65. "Supported Platforms". PostgreSQL Global Development Group. Retrieved 2012-04-06.
  66. "pgAdmin: PostgreSQL administration and management tools". website. Retrieved November 12, 2011.
  67. "Debian -- Details of package pgadmin3 in jessie". Retrieved 2017-03-10.
  68. "pgAdmin Development Team". pgadmin.org. Retrieved 22 June 2015.
  69. Dave, Page. "The story of pgAdmin". Dave's Postgres Blog. pgsnake.blogspot.co.uk. Retrieved 7 December 2014.
  70. "pgAdmin 4 README". Retrieved 15 August 2018.
  71. phpPgAdmin Project (2008-04-25). "About phpPgAdmin". Retrieved 2008-04-25.
  72. PostgreSQL Studio (October 9, 2013). "About PostgreSQL Studio". Archived from the original on October 7, 2013. Retrieved October 9, 2013.
  73. "TeamPostgreSQL website". 2013-10-03. Retrieved 2013-10-03.
  74. oooforum.org (2010-01-10). "Back Ends for OpenOffice". Archived from the original on 2011-09-28. Retrieved 2011-01-05.
  75. libreoffice.org (October 14, 2012). "Base features". Archived from the original on January 7, 2012. Retrieved October 14, 2012.
  76. Greg Smith; Robert Treat & Christopher Browne. "Tuning your PostgreSQL server". Wiki. PostgreSQL.org. Retrieved November 12, 2011.
  77. "pgDevOps". BigSQL.org. Retrieved 4 May 2017.
  78. Emmanuel Cecchet (May 21, 2009). Building PetaByte Warehouses with Unmodified PostgreSQL (PDF). PGCon 2009. Retrieved November 12, 2011.
  79. "MySpace.com scales analytics for all their friends" (PDF). case study. Aster Data. June 15, 2010. Archived (PDF) from the original on November 14, 2010. Retrieved November 12, 2011.
  80. "Last Weekend's Outage". Blog. Geni. 2011-08-01.
  81. "Database". Wiki. OpenStreetMap.
  82. PostgreSQL affiliates .ORG domain, AU: Computer World
  83. 1 2 3 W. Jason Gilmore; R.H. Treat (2006). Beginning PHP and PostgreSQL 8: From Novice to Professional. Apress. ISBN 978-1-43020-136-6. Retrieved 30 August 2017.
  84. Sony Online opts for open-source database over Oracle, Computer World
  85. A Web Commerce Group Case Study on PostgreSQL (PDF) (1.2 ed.), PostgreSQL
  86. "Architecture Overview". Reddit software wiki. Reddit. 27 March 2014. Retrieved 2014-11-25.
  87. "PostgreSQL at Skype". Skype Developer Zone. 2006. Retrieved 2007-10-23.
  88. "How Much Are You Paying For Your Database?". Sun Microsystems blog. 2007. Archived from the original on March 7, 2009. Retrieved December 14, 2007.
  89. "Database – MusicBrainz". MusicBrainz Wiki. Retrieved 5 February 2011.
  90. Duncavage, Daniel P (2010-07-13). "NASA needs Postgres-Nagios help".
  91. Roy, Gavin M (2010). "PostgreSQL at myYearbook.com" (talk). USA East: PostgreSQL Conference. Archived from the original on July 27, 2011.
  92. "Keeping Instagram up with over a million new users in twelve hours". Instagram-engineering.tumblr.com. 2011-05-17. Retrieved 2012-07-07.
  93. "Postgres at Disqus". Retrieved May 24, 2013.
  94. Matthew Kelly (March 27, 2015). At The Heart Of A Giant: Postgres At TripAdvisor. PGConf US 2015. Archived from the original on July 23, 2015. Retrieved July 23, 2015. (Presentation video)
  95. "Yandex.Mail's successful migration from Oracle to Postgres [pdf] | Hacker News". news.ycombinator.com. Retrieved 2016-09-28.
  96. 1 2 S. Riggs; G. Ciolli; H. Krosing; G. Bartolini (2015). PostgreSQL 9 Administration Cookbook - Second Edition. Packt. ISBN 978-1-84951-906-9. Retrieved 5 September 2017.
  97. "Met Office swaps Oracle for PostgreSQL". computerweekly.com. Retrieved 2017-09-05.
  98. Oracle Database
  99. "Open Source Software". FlightAware. Retrieved 22 November 2017.
  100. "Ansible at Grofers (Part 2) — Managing PostgreSQL – Lambda - The Grofers Engineering Blog". Lambda - The Grofers Engineering Blog. 2017-02-28. Retrieved 2018-09-05.
  101. Alex Williams (1 April 2013). "Heroku Forces Customer Upgrade To Fix Critical PostgreSQL Security Hole". TechCrunch.
  102. Barb Darrow (11 November 2013). "Heroku gussies up Postgres with database roll-back and proactive alerts". GigaOM.
  103. Craig Kerstiens (26 September 2013). "WAL-E and Continuous Protection with Heroku Postgres". Heroku blog.
  104. "EnterpriseDB Offers Up Postgres Plus Cloud Database". Techweekeurope.co.uk. 2012-01-27. Retrieved 2012-07-07.
  105. O'Doherty, Paul; Asselin, Stephane (2014). "3: VMware Workspace Architecture". VMware Horizon Suite: Building End-User Services. VMware Press Technology. Upper Saddle River, NJ: VMWare Press. p. 65. ISBN 978-0-13-347910-2. Retrieved 2016-09-19. In addition to the open source version of PostgreSQL, VMware offers vFabric Postgres, or vPostgres. vPostgres is a PostgreSQL virtual appliance that has been tuned for virtual environments.
  106. Al Sargent (15 May 2012). "Introducing VMware vFabric Suite 5.1: Automated Deployment, New Components, and Open Source Support". VMware blogs.
  107. Jeff (14 November 2013). "Amazon RDS for PostgreSQL – Now Available". Amazon Web Services Blog.
  108. Alex Williams (14 November 2013). "PostgreSQL Now Available On Amazon's Relational Database Service". TechCrunch.
  109. "Amazon Aurora Update – PostgreSQL Compatibility | AWS Blog". aws.amazon.com. Retrieved 2016-12-01.
  110. "Versioning policy". PostgreSQL Global Development Group. Retrieved 2016-06-01.
  111. Vaas, Lisa (2002-12-02). "Databases Target Enterprises". eWeek. Retrieved 2016-10-29.
  112. Krill, Paul (November 20, 2003). "PostgreSQL boosts open source database". InfoWorld. Retrieved 2016-10-21.
  113. Krill, Paul (January 19, 2005). "PostgreSQL open source database boasts Windows boost". InfoWorld. Retrieved 2016-11-02.
  114. Weiss, Todd R. (December 5, 2006). "Version 8.2 of open-source PostgreSQL DB released". Computerworld. Retrieved 2016-10-17.
  115. Gilbertson, Scott (February 5, 2008). "PostgreSQL 8.3: Open Source Database Promises Blazing Speed". Wired. Retrieved 2016-10-17.
  116. Huber, Mathias (July 2, 2009). "PostgreSQL 8.4 Proves Feature-Rich". Linux Magazine. Retrieved 2016-10-17.
  117. Brockmeier, Joe (September 30, 2010). "Five Enterprise Features in PostgreSQL 9". Linux.com. Linux foundation. Retrieved 2017-02-06.
  118. Timothy Prickett Morgan (12 September 2011). "PostgreSQL revs to 9.1, aims for enterprise". The Register. Retrieved 2017-02-06.
  119. https://www.postgresql.org/about/news/1415/
  120. https://www.infoq.com/news/2013/11/Nested-Hstore
  121. Richard, Chirgwin (7 January 2016). "Say oops, UPSERT your head: PostgreSQL version 9.5 has landed". The Register. Retrieved 2016-10-17.

Further reading

  • Obe, Regina; Hsu, Leo (July 8, 2012). PostgreSQL: Up and Running. O'Reilly. ISBN 1-4493-2633-1.
  • Krosing, Hannu; Roybal, Kirk (June 15, 2013). PostgreSQL Server Programming (second ed.). Packt Publishing. ISBN 978-1-84951-698-3.
  • Riggs, Simon; Krosing, Hannu (October 27, 2010). PostgreSQL 9 Administration Cookbook (second ed.). Packt Publishing. ISBN 1-84951-028-8.
  • Smith, Greg (October 15, 2010). PostgreSQL 9 High Performance. Packt Publishing. ISBN 1-84951-030-X.
  • Gilmore, W. Jason; Treat, Robert (February 27, 2006). Beginning PHP and PostgreSQL 8: From Novice to Professional. Apress. p. 896. ISBN 1-59059-547-5. Archived from the original on July 8, 2009. Retrieved April 28, 2009.
  • Douglas, Korry (August 5, 2005). PostgreSQL (second ed.). Sams. p. 1032. ISBN 0-672-32756-2.
  • Matthew, Neil; Stones, Richard (April 6, 2005). Beginning Databases with PostgreSQL (second ed.). Apress. p. 664. ISBN 1-59059-478-9. Archived from the original on April 9, 2009. Retrieved April 28, 2009.
  • Worsley, John C; Drake, Joshua D (January 2002). Practical PostgreSQL. O'Reilly Media. p. 636. ISBN 1-56592-846-6.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.