Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Analytics on your laptop with ClickHouse Local

Analytics on your laptop with ClickHouse Local

Although ClickHouse is usually used for large-scale data analytics with lots of concurrent users, we can also use it to run analytics from our laptop with ClickHouse local. In this talk I'll give an introduction to ClickHouse and its use cases, before showing how to analyse data both on my machine and from the internet if the WiFi treats us well!

https://www.meetup.com/uk-open-source-data-infrastructure-meetup/events/297395569/

Mark Needham

December 07, 2023
Tweet

Other Decks in Technology

Transcript

  1. What is ClickHouse? Open Source Developed since 2009 OSS 2016

    31k+ Github stars 1k+ contributors 500+ releases Column-Oriented Distributed OLAP Database Files per column Vectorized query execution Optimised for aggregations Sorting and indexing Background merges Replication Sharding Multi-master Cross-region Analytics use cases Aggregations Visualizations Mostly immutable data
  2. Row Oriented vs Column Oriented location ts temperature wind_speed humidity

    Aberystwyth 2022-01-01 00:00:00 14 21 79 Blackpool 2022-01-01 00:20:00 13 9 82 location Aberystwyth Blackpool temperature 14 13 humidity 79 82 ts 2022-01-01 00:00:00 2022-01-01 00:20:00 wind_speed 21 9 Row Oriented Column Oriented