Clickhouse-connect

Latest version: v0.8.16

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 15 of 20

0.5.3

Bug Fix
* Correctly return QueryResult object when created as a context using a `with` statement. This fixes examples and
the preferred context syntax for processing query results. Thanks to [John McCann Cunniff Jr](https://github.com/wabscale)

0.5.2

Bug fix
* Fix issue where client database is set to None (this normally only happens when deleting the initial database)

0.5.1

Bug fix
* Fix ping check in http client. Closes https://github.com/ClickHouse/clickhouse-connect/issues/96.

0.5.0

WARNING -- Breaking Change -- Removing get_client Arbitrary Keyword Arguments
The clickhouse_connect `get_client` method (which proxies the driver.Client constructor) previously accepted arbitrary
keyword arguments that were interpreted as ClickHouse server settings sent with every request. To be consistent with
other client methods, `get_client` now accepts an optional `settings` Dict[str, Any] argument that should be used instead
to set ClickHouse server settings.

WARNING -- Breaking Change -- HttpClient argument http_adapter replaced with pool_mgr
The driver.HttpClient constructor previously accepted the optional keyword argument `http_adapter`, which could be used to
pass a custom `requests.adapter.HttpAdapter` to the client. ClickHouse Connect no longer uses the `requests` library (see
Dependency Changes below). Instead, the HttpClient constructor now accepts an optional `pool_mgr` keyword argument which
can be used to set a custom `urllib.poolmanager.PoolManager` for the client. In most cases the default PoolManager is
all that is needed, but multiple PoolManagers may be required for advanced server/proxy applications with many client instances.

Dependency Changes
* ClickHouse Connect no longer requires the popular `requests` library. The `requests` library is built on
[urllib3](https://pypi.org/project/urllib3/), but ClickHouse Connect was utilizing very little of the added functionality.
Requests also has very restricted access to the `urllib3` streaming API, which made adding additional compression methods
difficult. Accordingly, the project now interfaces to `urllib3` directly. This should not change the public API (except as
noted in the warning above), but the HttpClient internals have changed to use the lower level library.
* ClickHouse Connect now requires the [zstandard](https://pypi.org/project/zstandard/) and [lz4](https://pypi.org/project/lz4/)
binding libraries to support zstd and lz4 compression. ClickHouse itself uses these compression algorithms extensively and
is optimized to work with them, so ClickHouse Connect now takes advantages of them when compression is desired.

New Features
* The core client `query` method now supports streaming. The returned `QueryResult` object has new streaming methods:
* `stream_column_blocks` - returns a generator of smaller result sets matching the ClickHouse blocks returned by the native interface.
* `stream_row_blocks` - returns a generator of smaller result sets matching the ClickHouse blocks returned by the native interface,
but "pivoted" to return data rows.
* `stream_rows` - returns a generator that returns a row of data with each iteration.
These methods should be used within a `with` context to ensure the stream is properly closed when done. In addition, two new properties
`result_columns` and `result_rows` have been added to `QueryResult`. Referencing either of these properties will consume the stream
and return the full dataset. Note that these properties should be used instead of the ambiguous `result_set`, which returns
the data oriented based on the `column_oriented` boolean property. With the addition of `result_rows` and `result_columns` the
`result_set` property and the `column_oriented` property are unnecessary and may be removed in a future release.
* More compression methods. As noted above, ClickHouse Connect now supports `zstd` and `lz4` compression, as well as brotli (`br`),
if the brotli library is installed. If the client `compress` method is set to `True` (the default), ClickHouse Connect will request compression
from the ClickHouse server in the order `lz4,zstd,br,gzip,deflate`, and will compress inserts to ClickHouse using `lz4`. Otherwise,
the client `compress` argument can be set to any of `lz4`, `zstd`, `br`, or `gzip`, and the specific compression method will be
used for both queries and inserts. While `gzip` is available, it doesn't perform as well as the other options and should normally not
be used.

Performance Improvements
* More data conversions for query data have been ported to optimized C/Cython code. Rough benchmarks suggest that this improves
query performance approximately 20% for standard data types.
* Using the new streaming API to process data in blocks significantly improves performance for large datasets (largely because Python has to
allocate significantly less memory and do much less internal data copying otherwise required to build and hold the full dataset). For datasets
of a million rows or more, streaming can improve query performance 2x or more.

Bug Fixes
* As mentioned, ClickHouse `gzip` performance is poor compared to `lz4` and `zstd`. Using those compression methods by default
avoids the major performance degradation seen in https://github.com/ClickHouse/clickhouse-connect/issues/89.
* Passing SqlAlchemy query parameters to the driver.Client constructor was broken by changes in release 0.4.8.
https://github.com/ClickHouse/clickhouse-connect/issues/94. This has been fixed.

0.4.8

New Features
* [Documentation](https://clickhouse.com/docs/en/integrations/language-clients/python/intro) has been expanded to cover recent updates.
* File upload support. The new `driver.tools` module adds the function `insert_file` to simplify
directly inserting data files into a table. See the [test file](https://github.com/ClickHouse/clickhouse-connect/blob/main/tests/integration_tests/test_tools.py)
for examples. This closes https://github.com/ClickHouse/clickhouse-connect/issues/41.
* Added support for server side [http query parameters](https://clickhouse.com/docs/en/interfaces/http/#cli-queries-with-parameters)
For queries that contain bindings of the form `{<name>:<datatype>}`, the client will automatically convert the query* method
`parameters` dictionary to the appropriate http query parameters. Closes https://github.com/ClickHouse/clickhouse-connect/issues/49.
* The main `clickhouse_connect.get_client` command will now accept a standard Python `dsn` argument and extract host, port,
user, password, and settings (query parameters) from the dsn. Note that values for other keyword parameters will take
precedence over values extracted from the dsn.
* The QueryResult object now contains convenience properties for the `first_item`, `first_row`, and `row_count` in the result.

0.4.7

Bug Fixes
* JSON inserts with the ujson failed, this has been fixed. https://github.com/ClickHouse/clickhouse-connect/issues/84

New Features
* The JSON/Object datatype now supports writes using JSON strings as well as Python native types

Page 15 of 20

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.