Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
63 views

We've recently started using Clickhouse and wrote a query to filter entries based on sha data like column named sha_data(256 bit hash). We have a primary index based on 4 other columns in which ...
nik's user avatar
  • 1,574
0 votes
1 answer
163 views

In clickhouse lag/lead functions are not supporting, i used runningDifference(), for this scenario it's not working. select endtime, runningDifference(endtime) as time_diff from (select ...
dundi rajesh's user avatar
0 votes
0 answers
301 views

asynchronous_insert_log table is not there under system db in clickhouse. My config.xml contains below configuration by default: <clickhouse> <!-- Other settings --> <...
Komal Bhadani's user avatar
0 votes
1 answer
673 views

Clickhouse CLI result When performing a query using the clickhouse-client command line interface and setting the format as JSON, we not only obtain the result but also statistics. Command clickhouse-...
calebeaires's user avatar
  • 2,104
0 votes
1 answer
1k views

Query used to create the table: CREATE TABLE default.ntest2(job_name String, list_data Array(Tuple(s UInt64, e UInt64, name String))) ENGINE = MergeTree ORDER BY (job_name) SETTINGS index_granularity =...
Yash Chauhan's user avatar
0 votes
1 answer
934 views

I am trying to run tests using playtika.testcontainers embedded-clickhouse, which used to work, but now I am getting java.lang.IllegalStateException: Failed to load ApplicationContext, caused by ...
user2329454's user avatar
1 vote
1 answer
2k views

I have a "Duration" field of type Decimal(38, 3) in a ClickHouse table. From my Golang service I'm sending a query to get the SUM() of it but I just can't scan the result back. I tried using ...
Ismael Farfán's user avatar
1 vote
0 answers
787 views

Want to get the query statistics info like rows_read/bytes_read for a query. But using the native interface(golang client), it seems impossible. And using Http interface we could get it in the header ...
Ling Peng's user avatar
1 vote
1 answer
4k views

The following problem occurred in our project, which we cannot solve. We have a huge data of our logs, and we go to ClickHouse from MongoDB. Our table is created like this: CREATE TABLE IF NOT EXISTS ...
Egor Kurito's user avatar
1 vote
1 answer
3k views

I have a table with schema CREATE TABLE traffic ( date Date, val1 UInt64, 'val2' UInt64 ... ) ENGINE = ReplicatedMergeTree(date, (val1, val2), 8192); the partition key is date here. I want to change ...
Tomyhill's user avatar
2 votes
3 answers
9k views

I am running click house version '20.6.4' with default settings.While walking through the logs i found these logs in abundance. ServerErrorHandler: Code: 210, e.displayText() = DB::NetException: ...
Tomyhill's user avatar
3 votes
2 answers
6k views

I am trying to import a html snippet which is part of one of the column in csv. There are double quotes in the html snippet and its is escaped. this csv is created using apache spark. for ...
Shivakumar ss's user avatar
0 votes
2 answers
1k views

In my Go application, I make a request to the ClickHouse database via clickhouse-go package. This query which I make return always only one record and it's an array of integers. Is there any way to ...
Nurzhan Nogerbek's user avatar