amazon-redshift-python-driver
amazon-redshift-python-driver copied to clipboard
Redshift Python Connector. It supports Python Database API Specification v2.0.
## Python version 3.11 ## Problem description We try to build wheels from source (and not use provided wheels). ``` pip uninstall redshift-connector -y && pip install --no-binary :all: redshift-connector==2.1.3...
Most of the data ingestion utilities (`pd.read_csv`, `pd.read_parquet`, `pd.read_sql`) since Pandas 2.2 include a `dtype_backend='pyarrow'` option to use PyArrow types instead of NumPy backend. It would be awesome if there...
## Description ## Motivation and Context ## Testing ## Screenshots (if appropriate) ## Types of changes - [ ] Bug fix (non-breaking change which fixes an issue) - [ ]...
## Description At my company we started using VPN that only works over IPv6. Since that we started seeing below errors when connecting: ``` 08:57:16 Encountered an error: Database Error...
Hello AWS maintainers of this project! In looking at the README, I noticed that this project explicitly calls-out compatibility with [sqlalchemy-redshift](https://github.com/sqlalchemy-redshift/sqlalchemy-redshift). However, the last AWS maintainer of this project, @Brooke-white,...
even though https://github.com/aws/amazon-redshift-python-driver/issues/196 is closed, I am still seeing this warning in redshift-connector 2.1.5: C:\.venv\Lib\site-packages\redshift_connector\core.py:654: DeprecationWarning: ssl.SSLContext() without protocol argument is deprecated. C:\.venv\Lib\site-packages\redshift_connector\core.py:654: DeprecationWarning: ssl.PROTOCOL_TLS is deprecated
## Driver version 2.0.0 ## Redshift version ([1372],) ## Client Operating System MacOS ## Python version Python 3.12.4 ## Table schema not needed ## Problem description 1. Expected behaviour: Trying...
We are facing an issue if we execute a dbt model in dbt core with redshift adapter in multi nodes or multi threads. We did some analysis to find the...
## Description Currently the connector doesn't allow users to configure detailed keepalive settings on the socket requiring them to modify their system or session settings. This can be a challenge...
In readme VARBYTE is stated as supported as Python's `bytes` type. When trying to query data VARBYTE data from Redshift, 'utf-8' decoding error is thrown. ### Reproduction ```python import redshift_connector...