Geoff Genz

Results 165 comments of Geoff Genz

Is the error you're seeing just a Typing error? The actual code works fine with PyArrow 19.0.1 (at least on my Mac). The urllib3 library successfully POSTs the PyArrow.Buffer data...

Thanks for the in depth analysis! I'm hesitant to force an upgrade to urllib 2.x so I'm looking at some kind of check in the arrow_buffer method for backward compatibility.

So I've just had a chance to look at this and I can't reproduce the error (again on my Mac, with Python 3.13 and urllib3 1.26.20). Do you have a...

This query is not particularly frequent (unless for some reason you're creating a lot of clients), and regardless clickhouse_connect requires information about several settings in the ClickHouse server, and that...

You can add headers to the client directly that will be used on every request, by using the `client.header` dictionary (and in theory you could add and remove them from...

@MehrazRumman We don't generally assign issues to outside contributors, since we use Github assignments to track expected work for the ClickHouse integrations team, but please submit a PR if you'd...

This would require updating one of the underlying Python clients to support ssh authentication. I believe that is theoretically possible with `clickhouse-driver`, but I don't know if there are plans...

Note that using a TLS/SSL private certificate should actually work if the ClickHouse server supports mutual TLS.

Note that `dbt-clickhouse` will use the `clickhouse-driver` client if the profile "driver" field is set to `native`. Looking at the `dbt-clickhouse` code, unfortunately it looks like it would require a...