(Denish Patel) With other great new features, PostgreSQL 9.2 makes DBAs life easy by providing more metrics in statistics collector views. Out of those , pg_stat_database caught my eyes because it provides a lot more details compare to Postgres 9.1 and other previous versions.
Tag: Open Source
Mitigating the Effect of Metadata Lock (MDL) Contention
(Chris Calender) If you see the “Waiting for table metadata lock” error, you may be wondering what is the best course of action to prevent it in the future. I have briefly discussed troubleshooting metadata locks before, however, that post more illustrated how easy it is to encounter the “Waiting fo
Recovering temporal types in MySQL 5.6: TIME, TIMESTAMP and DATETIME
(Aleksandr Kuzminsky) MySQL 5.6 introduces a new feature – microseconds resolution in some temporal types. As of 5.6.4 TIME, TIMESTAMP and DATETIME can have a fractional part. To create a field with subseconds you can specify precision in brackets: TIME(3), DATETIME(6) etc.
Postgres module highlight: pg_rewind, to quickly recycle a Postgres master into a slave
(Michael Paquier) Managing wisely server resources has always been a critical matter for all kinds of systems. A lack of resource would mean a loss of performance and scalability for applications running on those infrastructures, blocking the potential growth of a service, while using too much resou
Crash-resistant replication: How to avoid MySQL replication errors
(Muhammad Irfan) Percona Serverfs gcrash-resistant replicationh feature is useful in versions 5.1 through 5.5. However, in Percona Server 5.6 itfs replaced with Oracle MySQL 5.6Œs gcrash safe replicationh feature, which has itfs own implementation (you can read more about it here).
MySQL Performance: Why Performance Schema Overhead?..
(Dimitri Kravtchuk) As there was a lot of complain recently about various cases with PERFORMANCE SCHEMA (PFS) overhead, I’ve decided to start a series of articles to help you to use PFS in the best way to analyze your workloads. This is the first part, starting with an overview of instrumentation pr
3 Simple Patterns for Tighter MySQL Code
(Sean Hull) SQL is derided by many and for good reason. It’s key to scalability yet terribly difficult to write good code.
Practical P_S: Extending PROCESSLIST
(Todd Farmer) MySQL 5.6 introduced major advances to monitoring made via PERFORMANCE_SCHEMA, but also made a change in how it binds to the network by default. In MySQL 5.5, the ¨Cbind-address configuration option defaulted to ¡°0.0.0.0¡å, meaning only IPv4.
Scalability Happiness – A Quiet Query Log
(Sean Hull) There’s a lot of talk on the web about scalability. Making web applications scale is not easy. The modern web architecture has so many moving parts. How can we grapple with the underlying problem?
When it’s faster to use SQL in MySQL NDB Cluster over memcache API
(Peter Boros) Memcache access for MySQL Cluster (or NDBCluster) provides faster access to the data because it avoids the SQL parsing overhead for simple lookups – which is a great feature.
