MongoDb Connection URI

Actually I have to use external database. So I have created a mongodb pod using stateful sets.

Currently I am using the connection string as -
APPSMITH_MONGODB_URI: “mongodb://mongod-0.mongodb-service,mongod-1.mongodb-service,mongod-2.mongodb-service:27017/dbname_?”

Can anyone pls guide about the correct format of the connection string.

Hi @aaryan,
Could you please refer to the official k8s blog post for mongodb to verify your setup.
If you have configured the statefulset’s and the headless service correctly, then your connection string seems correct, but I think you have to escape _ with a backslash.

mongodb://mongod-0.mongodb-service,mongod-1.mongodb-service,mongod-2.mongodb-service:27017/dbname\_?