-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal Postgres Version Supported as External Database #48542
Comments
This would be helpful for us. We are looking for info on Postgres 17 support. |
I did some minimal testing with various Postgres versions on AWS RDS for the external database. Here are the results:
For the tests, I just checked to see if the helm chart would deploy and then if I could create an connect a Snowflake destination. Setup:Helm Chart Version: 1.3.0
postgresql:
enabled: false
global:
database:
type: "external"
secretName: "airbyte-config-secrets"
host: "<rds db name>.<rds id>.<rds region>.rds.amazonaws.com"
port: "5432"
database: "airbyte"
userSecretKey: "database-user"
passwordSecretKey: "database-password"
apiVersion: v1
kind: Secret
metadata:
name: airbyte-config-secrets
type: Opaque
stringData:
database-user: postgres
database-password: my_password Note helm install release-1 airbyte/airbyte -f values.yaml --timeout 10m0s I also needed to create the Airbyte databases before deploying the helm charts CREATE DATABASE airbyte WITH OWNER = postgres;
CREATE DATABASE temporal WITH OWNER = postgres;
CREATE DATABASE temporal_visibility WITH OWNER = postgres; |
This is very helpful for us as we start planning our upgrade to Postgres 17.x. Thank you! |
Helm Chart Version
What step the error happened?
Other
Relevant information
The documentation External Database do not inform users what is the minimal and maximum version supported. This can cause confusion to users.
Also can be good information to include in the
values.yaml
file.Relevant log output
The text was updated successfully, but these errors were encountered: