We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The error is psql: SSL SYSCALL error: Success
psql: SSL SYSCALL error: Success
This happens when we use psql or psycopg->libpq5 to connect to a encrypted sslmode=require PostgreSQL 16 endpoint, for PGVecto.rs.
psql
psycopg->libpq5
sslmode=require
PGVecto.rs
pgvector is not tested, but it might have the same error, as this is the issue of PostgreSQL and libpq5.
pgvector
VectorDBBench/Dockerfile
Line 1 in c45876c
After my tests on local machine:
So it might be helpful if the Dockerfile could be upgraded to:
FROM python:3.11-bookworm as builder-image FROM python:3.11-slim-bookworm
The text was updated successfully, but these errors were encountered:
@cutecutecat Great catch! It would be greatly appreciated if you could consider submitting a pull request with the necessary changes.
Sorry, something went wrong.
No branches or pull requests
The error is
psql: SSL SYSCALL error: Success
This happens when we use
psql
orpsycopg->libpq5
to connect to a encryptedsslmode=require
PostgreSQL 16 endpoint, forPGVecto.rs
.pgvector
is not tested, but it might have the same error, as this is the issue of PostgreSQL and libpq5.VectorDBBench/Dockerfile
Line 1 in c45876c
After my tests on local machine:
psql
11 and 13 have the same errorpsql
14, 15, 16 are okSo it might be helpful if the Dockerfile could be upgraded to:
The text was updated successfully, but these errors were encountered: