Are there recommended specs for the system databas...
# getting-started
l
Are there recommended specs for the system database? Postgres if it matters.
e
Hi Lisa, it's not documented yet but the lowest specs available on any cloud provider should suffice. https://meltano.slack.com/archives/C01TCRBBJD7/p1700696669321429?thread_ts=1700691529.911529&cid=C01TCRBBJD7
l
Perfect, thank you!
And related question, is this compatible with a db that requires ssl? Don't see a way of including things like client certs, like you can with a postgres tap.
e
You can add query parameters to your database URI string:
Copy code
postgresql+psycopg://<username>:<password>@<host>:<port>/<database>?sslmode=require&sslrootcert=...&sslcert=...&sslkey=...