-
Notifications
You must be signed in to change notification settings - Fork 228
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
Vertica destination support #991
Comments
I tried it with Postgres adapter since the dialect is very similar to Vertica. However, that didn't work out of the box. I get error
I used Vertica docker for testing together with chess pipeline example [destination.postgres.credentials]
database = "verticatest"
password = ""
username = "dbadmin"
host = "localhost"
port = 5433
connect_timeout = 15 Where should I input the database schema or is There's already support for Vertica in DBT and Airbyte which is great. Maybe those implementations could be used to fix the connections issue here. |
@perttus I'm sorry for missing this! It looks like that the protocol changed. Old Vertica python client indeed used psycopg2, now it is something different... SQL dialect still looks similar though. We'll probably support Vertica first via sql alchemy destination #21 btw. if you have any documentation that shows how to enable postgres protocol then ping us. maybe there's still a chance to run it |
@rudolfix maybe it's possible to run some operations via psycopg2 with Vertica but the official Python client is nowadays https://github.com/vertica/vertica-python which is used also in https://github.com/vertica/dbt-vertica adapter for example. Is it possible add support with the official client? It works out of the box with sqlalchemy just by adding So I'm able to use Vertica as a source with help of this example but not as destination |
Feature description
Is it possible to add support for Vertica as destination?
Are you a dlt user?
I'd consider using dlt, but it's lacking a feature I need.
Use case
Replace Informatica
Proposed solution
No response
Related issues
No response
The text was updated successfully, but these errors were encountered: