We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python
v0.4.0
PostgreSQL
Pandas
A memory leak when upgrading version v0.3.3 to v.4.0 using the main API cx.read_sql loading from postgres to Pandas DataFrame
cx.read_sql
If possible, please include a minimal simple example including:
import connectorx as cx sql = "select * from test_sample" for _ in range(100): df = cx.read_sql("<conn string>", sql)
Running a simple query above over many iterations, the memory kept increasing. The issue was gone once rolling back to v0.3.3.
The text was updated successfully, but these errors were encountered:
Hi @xma08 , thanks for reporting the issue!
Have you tested the last alpha release pip install connectorx==0.3.4a3 before v0.4.0? Just want to narrow down the possible causes for the leak.
pip install connectorx==0.3.4a3
Sorry, something went wrong.
Yes, just tried 0.3.4a3 and didn't find such issue.
0.3.4a3
No branches or pull requests
What language are you using?
Python
What version are you using?
v0.4.0
What database are you using?
PostgreSQL
What dataframe are you using?
Pandas
Can you describe your bug?
A memory leak when upgrading version v0.3.3 to v.4.0 using the main API
cx.read_sql
loading from postgres to Pandas DataFrameWhat are the steps to reproduce the behavior?
If possible, please include a minimal simple example including:
Example query / code
What is the error?
Running a simple query above over many iterations, the memory kept increasing. The issue was gone once rolling back to v0.3.3.
The text was updated successfully, but these errors were encountered: