-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
add pyexasol datasource, ensure that integer dont overflow in javascript #4378
Conversation
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.
Thanks! It's great we can finally add Exasol to the list of supported databases without using the more compelx setup of the ODBC driver.
I've added some comments ⬇
@@ -32,3 +32,5 @@ phoenixdb==0.7 | |||
certifi>=2019.9.11 | |||
pydgraph==2.0.2 | |||
azure-kusto-data==0.0.35 | |||
pyexasol==0.9.1 | |||
python-rapidjson==0.8.0 |
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.
Did you notice any noticeable performance difference when using this?
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.
Its recommended in the best practices of pyexasol, i have not done any benchmarking on this by myself.
25798fc
to
1673093
Compare
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.
Looks good 👍 Will merge once CI passes.
@stefan-mees , @arikfr , Hi guys, PyEXASOL creator is here. Thank you for the pull request! Let's see if we can improve this code a little bit:
This is a new feature described in https://www.exasol.com/support/browse/IDEA-476. It will help to prevent locks while retrieiving large amounts of meta data.
I would patch it myself, but we do not currently use ReDash in Badoo, so I cannot test those changes on prod long term. Thank you! Have a nice day. |
What type of PR is this? (check all applicable)
Description
Adds Exasol as datasource to Redash, we are running our own fork with this connector since a while and would like to contribute it back to the mainline.