Skip to content
Jetsukda's Blog

What is ClickHouse?

· 1 min read

I just completed the Real-time Analytics with ClickHouse: Level 1 Module 1: Introduction to ClickHouse (link) and I want to share my notes here.

What is ClickHouse?

ClickHouse is Clickstream data wareHouse -> ClickHouse. It’s a database management system for OLAP (Online Analytical Processing) workloads.

Some of the key features of ClickHouse are:

Use cases

How to run ClickHouse locally

If you want to run ClickHouse locally, you can use the following command to download the clickhouse binary:

curl https://clickhouse.com/ | sh

To start the server, you can use the following command:

./clickhouse server

Then you can access the ClickHouse HTTP interface at http://localhost:8123 by default.

ClickHouse localhost landing page

Or you can use ClickHouse Cloud to use the server without installing it locally.