the largest PostgreSQL conference in Europe. - This year PgConf.EU was held in Milan, Italy on October 15–18 and had more than 500 attendees. - In general, the conference is suitable for many different audiences: - DBAs already using PostgreSQL, or considering doing so - Developers of any kind of application, from hobbyists to large web and enterprise applications - Decision-makers interested in evaluating the world's most advanced open source database as an alternative to traditional proprietary products - PostgreSQL contributors — code, documentation, support — whatever you help the project with 3
the 21st Century - Markus Winand (@MarkusWinand, @ModernSQL) - Wonderful SQL features your ORMs can use (or not) - Louise Grandjonc (@louisemeta) - Deep Dive Into PostgreSQL Indexes - Ibrar Ahmed - 25 Interesting features of PostgreSQL 12 - Jobin Augustine (@jobinau) 4
real world scenarios - Boriss Mejias (@tchorix) - Performance analysis at full power - Julien Rouhaud (@rjuju123) - Jsonpath in examples and roadmap - Nikita Glukhov, Oleg Bartunov 5
contains set of SQL/JSON features for JSON processing inside of relational database. - The core of SQL/JSON is JSON path language, allowing access parts of JSON documents and make computations over them. - The following set of plain functions allows to execute "jsonpath" over "jsonb" values: - * jsonb_path_exists(jsonb, jsonpath[, jsonb, bool]), - * jsonb_path_match(jsonb, jsonpath[, jsonb, bool]), - * jsonb_path_query(jsonb, jsonpath[, jsonb, bool]), - * jsonb_path_query_array(jsonb, jsonpath[, jsonb, bool]). - * jsonb_path_query_first(jsonb, jsonpath[, jsonb, bool]). 8
SELECT and 420 times for UPDATEs on partitioned tables. - Users now have the ability to alter partitioned tables without blocking queries and use foreign keys to reference partitioned tables. 14
still happen on the parent table while a reindexing operation is happening. - This option will basically create a new index and then replaces the existing index at the very end of the operation. REINDEX INDEX CONCURRENTLY index_1; 15
of multi-factor authentication. - A PostgreSQL server can now require an authenticating client to provide a valid SSL certificate with their username using the clientcert=verify-full option and combine this with the requirement of a separate authentication method (e.g. scram-sha-256). 16
function operates on a set of rows. - However, it does not reduce the number of rows returned by the query. - The term window describes the set of rows on which the window function operates. - A window function returns values from the rows in a window. 22
columns by which you group. - Typically, a single aggregate query defines a single grouping set. - The GROUPING SETS allows you to define multiple grouping sets in the same query. 24
useful Postgres extension for performance analysis. - It is found in the contrib directory of a PostgreSQL distribution. - This means it already ships with Postgres and you don’t have to go and build it from source or install packages. You may have to enable it for your database if it is not already enabled. - It can give us info about: - Most frequent queries - Slowest queries - Queries generating most amount of temporary files - Per-query hit-ratio - Queries requiring more work_mem - ... 32
is the latest version of PostgreSQL available on Amazon RDS in the Database Preview Environment. - PostgreSQL Version 11.5 is the latest stable version of PostgreSQL available on Amazon RDS. 43