No Picture

Utilizing JSON Feature in ClickHouse

ClickHouse offers an experimental JSON format. So we need to SET allow_experimental_object_type = 1 Now, we may use the JSON type and insert JSON values while creating tables. CREATE TABLE exp_test ( `id` UInt64, `value` […]

No Picture

Memory Limit Exceeded in ClickHouse

Depending on the size of the SELECT or INSERT operation, we can see an error if memory usage is high. Code: 241. DB::Exception: Received from localhost:9000. DB::Exception: Memory limit (for query) exceeded Is there a […]

No Picture

ClickHouse Deduplication Operation

With the help of ClickHouse functions, you can rapidly determine how many duplicate rows are present in a table and then eliminate them, leaving just the unique rows. Let’s create a table: CREATE TABLE default.exp_test […]

ClickHouse Release Notes October 2022 Version 22.10
ChistaDATA

ClickHouse October 2022 Release – v22.10

Introduction Every new release includes new features, enhancements, and numerous bug fixes, and the ChistaDATA team always stays on top of the latest releases. On October 25, 2022, ClickHouse version 22.10 (October 2022) was released, […]

No Picture
ChistaDATA

Tracing ClickHouse with OpenTelemetry

Introduction “I am aware that people are disappointed with the performance. But all of our measurements are in the green, so the problem must be somewhere else.” Wouldn’t it be nice to be able to […]