Database Administration & Monitoring Configuring huge pages for your PostgreSQL instance, Debian version 25.02.2018 by Daniel Westermann In the last post we had a look at how you can configure huge pages on RedHat and CentOS systems. For Debian and Debian based systems the procedure is different as Debian does not come with(…)
Database Administration & Monitoring Configuring huge pages for your PostgreSQL instance, RedHat/CentOS version 25.02.2018 by Daniel Westermann Almost every PostgreSQL I get in touch with is not configured to use huge pages, which is quite a surprise as it can give you a performance boost. Actually it is not the PostgreSQL instance you need(…)
Database Administration & Monitoring New SHA-2 functions showing up in PostgreSQL 11 23.02.2018 by Daniel Westermann A recent commit announced new SHA-2 functions coming up in PostgreSQL 11. Until now you can use the md5 function to generate hashes for test data or whatever you want. This commit adds more(…)
Database Administration & Monitoring My personal journey with Linux on the desktop 18.02.2018 by Daniel Westermann My Linux experience started back in 1999 when we needed a router for our ISDN connection in our shared apartment when we were students. I don't remember the hardware we used for that but I am sure at(…)
Database Administration & Monitoring What you can do when your Veritas cluster shows interfaces as down 17.02.2018 by Daniel Westermann Recently we had the situation that the Veritas cluster (InfoScale 7.3) showed interfaces as down on the two RedHat 7.3 nodes. This e.g. can happen when you change hardware. Although all service groups were up and running this is a(…)
Database Administration & Monitoring How we build our customized PostgreSQL Docker image 13.02.2018 by Daniel Westermann Docker becomes more and more popular these days and a lot of companies start to really use it. At one project we decided to build our own customized Docker image instead of using the official PostgreSQL one.
Database Administration & Monitoring Does pg_upgrade in check mode raises a failure when the old cluster is running? 12.12.2017 by Daniel Westermann Today I had the pleasure to have Bruce Momjian in my session about PostgreSQL Upgrade Best Practices at the IT Tage 2017 in Frankfurt. While browsing through the various options you(…)
Database Administration & Monitoring No journal messages available before the last reboot of your CentOS/RHEL system? 05.12.2017 by Daniel Westermann As you probably noticed RedHat as well as CentOS switched to systemd with version 7 of their operating system release. This also means that instead of looking at /var/log/messages you are supposed to use(…)
Database Administration & Monitoring Are statistics immediately available after creating a table or an index in PostgreSQL? 28.11.2017 by Daniel Westermann While giving the last PostgreSQL DBA Essentials workshop this question came up: When we create a table or an index: are the statistics available automatically? To be more precise: When we create and load a table in(…)
Database Administration & Monitoring Create index CONCURRENTLY in PostgreSQL 22.11.2017 by Daniel Westermann In PostgreSQL when you create an index on a table, sessions that want to write to the table must wait until the index build completed by default. There is a way around that, though, and in this post we'll look(…)