Database proxy for pods in Kubernetes

4/15/2020

If I have a large number of pods in Kubernetes which have multiple live DB connections, is there any way to manage all these connections to reduce the number of open connections? For example, using a database proxy. I'm aware AWS does this for lambda function containers (RDS proxy).

Is there something similar to this?

-- Colin D'souza
aws-lambda
database
database-connection
kubernetes
proxy

1 Answer

4/15/2020

Not related to Kubernetes per se. It really depends on what database or service you are running and/or what language your application is written in. Examples:

-- Rico
Source: StackOverflow