Database Administration & Monitoring Customizing PostgreSQL parameters in EDB containers in MiniShift/OpenShift 18.05.2018 by Daniel Westermann This blog refers to an older version of EDB's Postgres on Kubernetes offering that is no longer available. In the last two posts we deployed an EDB database container and two pgpool instances and then(…)
Database Administration & Monitoring Scaling the EDB containers in MiniShift/OpenShift 18.05.2018 by Daniel Westermann This blog refers to an older version of EDB's Postgres on Kubernetes offering that is no longer available. When you followed the last post you should have two pgpool instances and one EDB Postgres instance running(…)
Database Administration & Monitoring Deploying PostgreSQL in MiniShift/OpenShift 26.04.2018 by Daniel Westermann The last post quickly outlined on how you can setup MiniShift for playing around with OpenShift on your workstation. In this post we'll setup PostgreSQL in MiniShift using the default PostgreSQL image that already comes with MiniShift.
Database Administration & Monitoring Setting up MiniShift 25.04.2018 by Daniel Westermann Currently we have many requests to support customers in running PostgreSQL in Docker containers. Some of those use redhat OpenShift as the management platform for their Docker deployments. Setting up an OpenShift cluster requires quite some resources and(…)
Database Administration & Monitoring Can I do it with PostgreSQL? – 19 – Create user … identified by values 21.04.2018 by Daniel Westermann Puh, that last post in this series is already half a year old. Time is moving too fast :( Today, while being at a customer again, this question came up: Can I do something comparable in PostgreSQL(…)
Database Administration & Monitoring 2018.pgconf.de, recap 16.04.2018 by Daniel Westermann Finally I am home from pgconf.de in Berlin at the beautiful Müggelsee. Beside meeting core PostreSQL people such Devrim and Bruce, Andreas and joining Jan again for great(…)
Database Administration & Monitoring Insert…on conflict with partitions finally works in PostgreSQL 11 29.03.2018 by Daniel Westermann Another partitioning improvement for PostgreSQL 11: Insert...on conflict is now supported (for most cases) in PostgreSQL 11 thanks to this commit. Lets see how it works.
Database Administration & Monitoring The WAL segment size becomes changeable in PostgreSQL 11 27.03.2018 by Daniel Westermann Up to PostgreSQL 10 the wal segment size was fixed once PostgreSQL was compiled and installed. When you wanted to have something else than the default you needed to tell that to the configure command when building from source, e.g.
Database Administration & Monitoring When you execute the same statement thousands of times -> prepare it 26.03.2018 by Daniel Westermann Every time you send a SQL statement to PostgreSQL it must be parsed. Parsing is fast, yes, but parsing the same statement a thousand times can quickly sum up to quite some time the database could spend for something else.
Database Administration & Monitoring, Database management, PostgreSQL PostgreSQL – logical replication with pglogical 23.03.2018 by Joël Cattin Although PostgreSQL 10 integrate native logical replication (have a look here or here), it is always interesting to be aware of alternative solutions to the available in-core features. One of those is called(…)