-
Notifications
You must be signed in to change notification settings - Fork 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
feat: Add support for Vertica analytical database #1538
Conversation
Hi, @dingqiangliu, thank you for your contribution. Please fix pylint error with following commands: make fmt
make mypy |
Hello @fangyinc, pylint error fixed, please review it again. |
@dingqiangliu Hello, I installed docker according to the above command, but an error occurred when linking.
I noticed that you wrote |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM~
Description
Add RDBMS connector for Vertica to support this project running on data warehouse with large data volume.
This connect only requires open source python driver of Vertica, vertica-python https://github.com/vertica/vertica-python. Its dependency is added in setup.py at the same time.
How Has This Been Tested?
All features about RDBMS connecor are tested including Chat DB and Chat Data.
docker pull vertica/vertica-ce # see also: https://hub.docker.com/r/vertica/vertica-ce docker run -p 5433:5433 -p 5444:5444 \ --mount type=volume,source=vertica-data,target=/data \ --name vertica_ce \ vertica/vertica-ce
The database name is vertica_ce, port is 5433, username is dbadmin, and password is empty by default.
go to Chart DB and ask question about data model in database.
go to Chart Data and ask question about data in database.
Snapshots:
Include snapshots for easier review.
Checklist:
add support for Vertica analytical database