Running Postgres in Kubernetes [pdf]
static.sched.com
Running Postgres in Kubernetes [pdf]
1–10 of 101 posts
Re: Running Postgres in Kubernetes [pdf]
#2I wonder how many companies really need this complexity, I bet 99.99% of the companies could get away with vertical scaling the writes and horizontal scaling the read only replica which would reduce the number of moving parts a lot.
I have yet to play much with kubernetes but when I see those diagrams it just baffles me how people are OK with running so much complexity in their technical stack.
Re: Running Postgres in Kubernetes [pdf]
#3Re: Running Postgres in Kubernetes [pdf]
#4That looks very interesting and super complex. I wonder how many companies really need this complexity, I bet 99.99% of the companies could get away with vertical scaling the writes and horizontal scaling the read only replica which would reduce the number of moving parts a lot. I have yet to play much with kubernetes but when I see those diagrams it just baffles me how people are OK with running so much complexity i…
pgo create cluster
command.
Most administrative tasks like creating or restoring backups (which can be automatically pushed to S3) are just one or two pgo commands.
The linked pdf looks complex, because it:
a. compares 3 different operators
b. goes into implementation details that most users are shielded from.
And I'm actually not sure which one of the three operators is the author recommending :)
Re: Running Postgres in Kubernetes [pdf]
#5What's the use-case for running databases in k8s, is this a widely accepted best practice?
Re: Running Postgres in Kubernetes [pdf]
#6That looks very interesting and super complex. I wonder how many companies really need this complexity, I bet 99.99% of the companies could get away with vertical scaling the writes and horizontal scaling the read only replica which would reduce the number of moving parts a lot. I have yet to play much with kubernetes but when I see those diagrams it just baffles me how people are OK with running so much complexity i…
Re: Running Postgres in Kubernetes [pdf]
#7What's the use-case for running databases in k8s, is this a widely accepted best practice?
JK, sort of.
My first go to is something like RDS, but I’ve run Postgres in k8s for pretty much one use case: everything else is already in k8s _and_ I need a PG extension/functionality not present in RDS.
Re: Running Postgres in Kubernetes [pdf]
#8That looks very interesting and super complex. I wonder how many companies really need this complexity, I bet 99.99% of the companies could get away with vertical scaling the writes and horizontal scaling the read only replica which would reduce the number of moving parts a lot. I have yet to play much with kubernetes but when I see those diagrams it just baffles me how people are OK with running so much complexity i…
That being said, I think Kubernetes now has much better support for this kind of thing. But given my method has been so stable, I just keep on going with it.
Re: Running Postgres in Kubernetes [pdf]
#9What's the use-case for running databases in k8s, is this a widely accepted best practice?