Replies: 1 comment
-
Hi, @ddzmitry! I'm Dosu, and I'm here to help the LlamaIndex team manage their backlog. I wanted to let you know that we are marking this issue as stale. From what I understand, you opened this issue regarding connecting to PGVectorStore using RDS PostgreSQL proxy with SSL. You mentioned that you have tried different connection methods, but none of them have worked. Currently, there hasn't been any activity or comments on the issue. Before we close this issue, we wanted to check with you if it is still relevant to the latest version of the LlamaIndex repository. If it is, please let us know by commenting on the issue. Otherwise, feel free to close the issue yourself, or it will be automatically closed in 7 days. Thank you for your understanding and contribution to the LlamaIndex project! |
Beta Was this translation helpful? Give feedback.
-
Question Validation
Question
We are trying to connect to PGVectorStore using RDS PostgreSQL proxy (Amazon) using SSL , however we had no luck connecting using from_params or just by passing connection string
FATAL: This RDS Proxy requires TLS connections
we tried both
connstr = build_connection_string(proxy_endpoint,5432,"DBNAME","USER",iam_auth_token)
conn_str = f"postgresql://{USER}:{iam_auth_token}@{proxy_endpoint}:{port}/{databaseName}?sslmode=verify-ca&sslrootcert=/path/to/rds-combined-ca-bundle.pem"
Neither worked
Beta Was this translation helpful? Give feedback.
All reactions