Tagged Questions
1
vote
1answer
21 views
How un-clustered is a CLUSTER USING table in Postgres
I have some tables which benefit greatly from CLUSTER ON/CLUSTER USING in Postgres. Data accessed at the same time is "defragmented" into a small number of disk blocks:
# CLUSTER table USING ...
3
votes
0answers
130 views
How does Postgres Plus Cloud Database on AWS compare with the alternatives [closed]
I'm familiar with the difficulties of scaling regular postgres on AWS and the limitation of services like RDS.
Postgres plus cloud database (bit of a mouthful) seems to run out of the box on AWS, ...
8
votes
1answer
252 views
Disk file effects of delete and vacuum
I have a very frequently updated table with 240 million rows (and growing). Every three hours 1.5 million rows are inserted and 1.5 million are deleted. When I moved the cluster to a SSD this bulk ...
2
votes
2answers
373 views
Effective backup and archive strategy for database and linked files
I am using Postgres to store a variety of application data for a webapp. Part of the application involves storing and retrieving user uploaded files. I am storing the files in the filesystem with ...