duckdb: JDBC Memory leak on CentOS 7.7
What happens?
Memory leak on CentOS 7.7,window is ok. There is a memory leak when executing multiple queries on CentOS 7.7
To Reproduce
We’ve written a minimal reproduction and shared it as a GitHub repository. The reproduction runs for a specified period of time.
Environment (please complete the following information):
- OS: CentOS 7.7
- DuckDB Version: 0.3.3
- DuckDB Client: jdbc
- ] Have you tried this on the latest
masterbranch?
- Python:
pip install duckdb --upgrade --pre - R:
install.packages("https://github.com/duckdb/duckdb/releases/download/master-builds/duckdb_r_src.tar.gz", repos = NULL) - Other Platforms: You can find binaries here or compile from source.
- Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
About this issue
- Original URL
- State: closed
- Created 2 years ago
- Comments: 16 (5 by maintainers)
@Mytherin The JDBC driver does not use Query. Everything goes through Prepare and Execute.
I ran this example (that I feel is close to the JDBC calls) and each query uses almost a 200 Bytes of extra memory.
Hopefully someone can confirm this or point to a problem with the example.