<@U040HT0TTJS> What database do you have? For mong...
# prisma1-community
l
@Jeff Gardner What database do you have? For mongodb, this should be settable via the connection string
j
MySQL
l
Ok, haven't tried that, but for mongodb the pool is part of the driver (so presumably so for the other db drivers) . So I guess see which parameters can go to the connection string?
j
thanks @Lars Ivar Igesund. when you say connection string, what exactly are you referring to? we configure our DB connection via a
PRISMA_CONFIG
environment variable inside our prisma container, properties are defined here (doesn’t seem to have a timeout property): https://v1.prisma.io/docs/1.34/prisma-server/deployment-environments/docker-rty1/#database-properties
l
Hmm, ok, for mongodb I can do databases: default: connector: mongo uri: ${MONGO_URI} and generally add a lot of options into the URI (query parameter style) - maybe it can be added to the host field? But you would have to refer to mysql docs what a connection string there looks like (assuming it exists)
j
nice, i’ll look into that, thanks!