Blog
PostgreSQL is King! Last week was quite busy being a servant.
AWS performance: Results included
- That high IO latency is an …
Don't kill yourself
What!!! Surely you can't be …
Along the lines of GCE, here are some prices
GCE: 670.00
16 CPUS
60G Memory
2500GB HD space
GCE: 763.08
16 CPUS
104G Memory
2500GB HD space
Amazon: 911.88
16 CPUS
30G Memory
3000GB HD Space
Amazon: 1534.00
r3.4xlarge
16 CPUS
122.0 …
GCE, A little advertised cloud service that is perfect for PostgreSQL
I have yet to run PostgreSQL on GCE in production. I am still testing it but I have learned the following:
- A standard provision disk for GCE will give you ~ 80MB/s random write.
- A standard SSD provisioned disk for GCE will give you ~ 240MB/s.
Either disk can be provisioned as a raw device allowing you to use Linux Software Raid to build a RAID 10 which even …
PDXPGDay 2014
The conference was really a mini-conference but it was great. It was held …
apt.postgresql.org... a wonderful if flawed apt repository
These issues are not …
Kicking the Donkey of PostgreSQL Replication
Security Considerations While Using ssh-agent.
Recently we got contacted by a customer, and started the typical remote access setup: ask them to open ssh port for our bastion server, create a new user for us, and add the corresponding ssh public key. Well, they promptly responded, and we tested access, got into their bastion server and then tried to get to one of the broken servers but, it was asking for a password. We just …
Managing pg_hba.conf With Ansible
pg_hba.conf is perhaps one of the easiest to understand configuration files in PostgreSQL. Its syntax is straightforward, the concept seems to resemble that of any popular IP filter or ACL mechanism in various software packages. pg_hba.conf is also well documented, like the rest of PostgreSQL, and we love it because it lets us do what we want without getting in our way. What else could we possibly ask of it? …