-
Notifications
You must be signed in to change notification settings - Fork 161
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
Support for Trino #438
Comments
+1 on this, I feel like it should not be too difficult given there is already the official DBAPI wrapper https://github.com/trinodb/trino-python-client |
+1, but it seems trino is using http as interface, thus won't be accelerated too much. |
Here's an example Trino Rust client implementation: https://github.com/joshthoward/trino-rust-client, it's basically just a wrapper around a few REST API calls. There are also very tricky things like supporting OAuth and automatically de-serializing the data into an Arrow table format that are absent. Benchmarking that (as the best case) against the python bindings might show if there is a room for speedup, but I doubt much is to be gained. |
Trino support was added in 0.3.3 |
Please add support for Trino SQL engine
The text was updated successfully, but these errors were encountered: