Sign inSign up

roistat/clickhouse

By roistat

Updated over 10 years ago

ClickHouse is an open-source column-oriented database that allows generating reports in real time

Image
2

1.1K

roistat/clickhouse repository overview

Clickhouse Logo

What is Clickhouse?

ClickHouse manages extremely large volumes of data in a stable and sustainable manner. It currently powers Yandex.Metrica, world’s second largest web analytics platform, with over 13 trillion database records and over 20 billion events a day, generating customized reports on-the-fly, directly from non-aggregated data. This system was successfully implemented at CERN’s LHCb experiment to store and process metadata on 10bn events with over 1000 attributes per event registered in 2011.

How to use this image

start a clickhouse instance

$ docker run -p 8123:8123 -p 9000:9000 roistat/clickhouse

connect to clickhouse via tcp client

$ docker exec -it {container_name} clickhouse-client

docker-compose
version: '2'
 services:
   clickhouse:
     image: roistat/clickhouse
     ports:
       - 9000:9000
       - 8123:8123
     volumes:
       - ./clickhouse-config.xml:/etc/clickhouse-server/config.xml
       - ./clickhouse-data:/opt/clickhouse/data

You can download sample clickhouse config from here.

Tag summary

Content type

Image

Digest

Size

295.6 MB

Last updated

over 10 years ago

docker pull roistat/clickhouse