-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
No data written when using WriteTableAsync using Clickhouse clickhouse/clickhouse-server:latest #77
Comments
@aidanmorgan could you please submit the specific version numbers of both clickhouse versions.
|
Hi @SergeyMirvoda! the I did a bit of digging, and it looks like the issue is caused by a NullReferenceException that is getting swallowed internally:
|
Hi, I'm running into the same issue. No data is being written when using the bulk insert example in the readme. My Clickhouse server version is
|
The error seems to be caused by the lack of a backward compatibility in the ClickHouse server. Catching up with the current protocol revision should solve this problem. |
This error is caused by a really useful feature in the ClickHouse server: (limited) support of ACID transactions. In the current version of ClickHouseClient the method |
I have an interesting bug when trying to bulk insert data into a table using the
WriteTableAsync
function. I've tried to provide a simple reproduction here:Database Structure:
Using the
clickhouse/clickhouse-server:latest
docker image the following insert works:Running a bulk insert for this however does not work, doing a
SELECT *
against the table returns zero rows.:Checking the logs for the server, there seems to be a repeated error log printed:
Switching to the
yandex/clickhouse-server:latest
image returns four rows.The text was updated successfully, but these errors were encountered: