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 The same MAC address for two interfaces on the same host? 27.03.2018 by Daniel Westermann Yes, sounds strange, but exactly this is what we faced today. In the end it is clear and not strange anymore but for a moment we really thought we are hitting a bug in the operating system, which was RedHat(…)
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 Updating the partition key now works in PostgreSQL 11 23.03.2018 by Daniel Westermann In the last post about partitioning improvements in PostgreSQL 11 we talked about unique indexes and primary keys on partitioned tables. Both did not work in PostgreSQL 10 but now do in PostgreSQL 11. Another operation that(…)
Database Administration & Monitoring What is the maximum in list size in PostgreSQL? 23.03.2018 by Daniel Westermann Yesterday, while being at a customer, an interesting question popped up: What is the maximum of in list values in PostgreSQL? I couldn't answer although I never read somewhere that there is a limit. The following is for fun only(…)
Database Administration & Monitoring Local partitioned indexes in PostgreSQL 11 22.03.2018 by Daniel Westermann When declarative partitioning was introduced with PostgreSQL 10 this was a big step forward. But as always with big new features some things do not work in PostgreSQL 10 which now get resolved in PostgreSQL 11. One of those are(…)