SlideShare a Scribd company logo
June 7th, 2022 - My first 90 days with ClickHouse - Alkin Tezuysal -
EVP Global Services - ChistaDATA Inc.
Let’s get connected with Alkin first
● Alkin Tezuysal - EVP - Global Services @chistadata
○ Linkedin : https://www.linkedin.com/in/askdba/
○ Twitter: https://twitter.com/ask_dba
● Open Source Database Evangelist
○ Previously PlanetScale, Percona and Pythian as Technical Manager, SRE, DBA (MySQL)
○ Previously Enterprise DBA , Informix, Oracle, DB2 , SQL Server
● Author, Speaker, Mentor, and Coach
@ChistaDATA Inc. 2022
@ask_dba
Also…
Someone who is Born to Sail
@ChistaDATA Inc. 2022
Forced to Work
@ask_dba
Trivia Question ?
@ChistaDATA Inc. 2022
The left and right sides of the boat are referred to as what?
@ask_dba
About MySQL Cookbook 4th Edition
● O’reilly Book previously authored by Paul Dubois 3 editions
● Solutions for Database Developers and Administrators
● More than 950 pages of recipes for specific database challenges
● It took two years of authoring, rewriting, reviewing, editing and learning.
● Co-authored with Sveta Smirnova - MySQL Expert / Author , Percona
@ChistaDATA Inc. 2022
@ask_dba
@ChistaDATA Inc. 2022
@ask_dba
@svetsmirnova
About another book…
By Vijay Anand
● Database Fundamentals overview
● Comparison and examples from different data stores
● Techniques, tips and tricks for ClickHouse
● Great overview and summary for beginners
@ChistaDATA Inc. 2022
@ask_dba
About ClickHouse
● Columnar Storage
● SQL Compatible
● Open Source (Apache 2.0)
● Shared Nothing Architecture
● Parallel Execution
● Rich in Aggregate Functions
● Super fast for Analytics workload
○ Compression and Encoding
@ChistaDATA Inc. 2022
@ask_dba
Other ClickHouse features
● Engine types for analytical workloads
● Materialized Views
● External data connectors
● Data types for compatibility with other sources
@ChistaDATA Inc. 2022
@ask_dba
Columnar Storage
orders
@ChistaDATA Inc. 2022
order_id 1 2 3 4
order_code AB-01 AB-02 AB-02 AB-03
order_amount 2.99 1.99 1.50 2.25
order_category stationary stationary stationary gifts
@ask_dba
SQL Compatible
● Full SQL parser (INSERT)
○ INSERT INTO t VALUES (1, 'Hello, world'), (2, 'abc'), (3, 'def')
● Data format parser
○ SELECT EventDate, count() AS c FROM test.hits GROUP BY EventDate WITH TOTALS
ORDER BY EventDate FORMAT TabSeparated
@ChistaDATA Inc. 2022
@ask_dba
Shared Nothing Architecture
Data distribution refers to splitting the very large dataset into multiple shards
which are stored on different servers. ClickHouse divides the dataset into
shards according to the sharding key. Each shard holds and processes a part
of the data, the query results from multiple shards are then combined together
to give the final result.
@ChistaDATA Inc. 2022
@ask_dba
Zookeeper
Sharding
@ChistaDATA Inc. 2022
@ask_dba
Shard_01 Shard_02 Shard_03 Shard_n
Replication
Data replication refers to keeping a copy of the data on the other server nodes for
ensuring availability in case of server node failure.
This can also improve performance by allowing multiple servers to process the
data queries in parallel.
@ChistaDATA Inc. 2022
@ask_dba
Zookeeper
Replication
@ChistaDATA Inc. 2022
@ask_dba
Shard_01 Shard_02 Shard_03 Shard_n
Replica_01 Replica_02 Replica_03 Shard_n
Replication & Sharding
@ChistaDATA Inc. 2022
@ask_dba
Shard_01
Replica_01
Clickhouse Node 1
Shard_04
Replica_04
Shard_02
Replica_02
Clickhouse Node 2
Shard_03
Replica_03
Shard_05
Replica_05
Clickhouse Node 3
Shard_06
Replica_06
Shard_n
Replica_n
Clickhouse Node n
Shard_n
Replica_n
Zookeeper
Replication & Sharding
@ChistaDATA Inc. 2022
@ask_dba
Parallel Execution
● Large queries are parallelized naturally, taking all the necessary resources available on the current
server.
● Distributed processing on multiple nodes.
@ChistaDATA Inc. 2022
@ask_dba
Rich in Aggregate Functions
● Generic aggregate functions (count, min, max, avg, etc.)
○ Ton of ClickHouse specific aggregate functions
● Parametric aggregate functions (histogram, sequenceMatch, etc.)
● Combinators to change the behavior of the aggregate function (-if sumIf,
avgIf)(-array sumArray, uniqArray)
@ChistaDATA Inc. 2022
@ask_dba
Super fast for Analytics workload
● Cost efficient performance against other solutions
● Improved performance on every release
● Use cases and usage increasing hence
@ChistaDATA Inc. 2022
@ask_dba
Data on Kubernetes?
● Still a controversial subject?
● Community and use cases
● Is it production grade yet?
@ChistaDATA Inc. 2022
@ask_dba
Operators
● Vitess operator by PlanetScale
● Percona XtraDB, MongoDB, PostgreSQL operators by Percona
● ClickHouse Kubernetes Operator by Altinity
● Oracle MySQL InnoDB Cluster
● More to come? Maybe …
● In the meantime other operators
○ RedShift,
@ChistaDATA Inc. 2022
@ask_dba
Altinity Operator for ClickHouse
● Creates ClickHouse clusters defined as custom resources
● Customized storage provisioning (VolumeClaim templates)
● Customized pod templates
● Customized service templates for endpoints
● ClickHouse configuration management
● ClickHouse users management
● ClickHouse cluster scaling including automatic schema propagation
● ClickHouse version upgrades
● Exporting ClickHouse metrics to Prometheus
@ChistaDATA Inc. 2022
@ask_dba
Altinity Operator for ClickHouse
@ChistaDATA Inc. 2022
@ask_dba
Altinity Operator for ClickHouse
@ChistaDATA Inc. 2022
@ask_dba
Altinity Operator for ClickHouse
@ChistaDATA Inc. 2022
@ask_dba
Open Source ClickHouse Community
1. DOK
2. ClickHouse
3. Altinity
4. ChistaDATA
@ChistaDATA Inc. 2022
@ask_dba
About ChistaDATA Inc.
● Founded in 2021 by Shiv Iyer - CEO and Principal
● Has received 3M USD seed investment
● Focusing on ClickHouse infrastructure operations
● Services around dedicated Managed Services, Support and Consulting
● We’re hiring globally DBAs, SREs and DevOps Engineers
@ChistaDATA Inc. 2022
@ask_dba

More Related Content

PDF
A Day in the Life of a ClickHouse Query Webinar Slides
PDF
Change Data Feed in Delta
PDF
Storing time series data with Apache Cassandra
PDF
ClickHouse Data Warehouse 101: The First Billion Rows, by Alexander Zaitsev a...
PDF
Webinar slides: MORE secrets of ClickHouse Query Performance. By Robert Hodge...
PPTX
High Performance, High Reliability Data Loading on ClickHouse
PPTX
Where is my bottleneck? Performance troubleshooting in Flink
PDF
Better than you think: Handling JSON data in ClickHouse
A Day in the Life of a ClickHouse Query Webinar Slides
Change Data Feed in Delta
Storing time series data with Apache Cassandra
ClickHouse Data Warehouse 101: The First Billion Rows, by Alexander Zaitsev a...
Webinar slides: MORE secrets of ClickHouse Query Performance. By Robert Hodge...
High Performance, High Reliability Data Loading on ClickHouse
Where is my bottleneck? Performance troubleshooting in Flink
Better than you think: Handling JSON data in ClickHouse

What's hot (20)

PDF
Your first ClickHouse data warehouse
PDF
Apache Iceberg - A Table Format for Hige Analytic Datasets
PPTX
Planning your Next-Gen Change Data Capture (CDC) Architecture in 2019 - Strea...
PDF
Building robust CDC pipeline with Apache Hudi and Debezium
PDF
[Meetup] a successful migration from elastic search to clickhouse
PDF
ClickHouse Keeper
PDF
ClickHouse Materialized Views: The Magic Continues
PDF
ClickHouse Monitoring 101: What to monitor and how
PDF
10 Good Reasons to Use ClickHouse
PDF
ClickHouse Deep Dive, by Aleksei Milovidov
PDF
All About JSON and ClickHouse - Tips, Tricks and New Features-2022-07-26-FINA...
PDF
Altinity Quickstart for ClickHouse
PPTX
Delta Lake with Azure Databricks
PPTX
Evening out the uneven: dealing with skew in Flink
PDF
Tricks every ClickHouse designer should know, by Robert Hodges, Altinity CEO
PDF
Introduction to the Mysteries of ClickHouse Replication, By Robert Hodges and...
PDF
Data Warehouses in Kubernetes Visualized: the ClickHouse Kubernetes Operator UI
PDF
Parquet performance tuning: the missing guide
PDF
RocksDB Performance and Reliability Practices
PDF
CDC Stream Processing with Apache Flink
Your first ClickHouse data warehouse
Apache Iceberg - A Table Format for Hige Analytic Datasets
Planning your Next-Gen Change Data Capture (CDC) Architecture in 2019 - Strea...
Building robust CDC pipeline with Apache Hudi and Debezium
[Meetup] a successful migration from elastic search to clickhouse
ClickHouse Keeper
ClickHouse Materialized Views: The Magic Continues
ClickHouse Monitoring 101: What to monitor and how
10 Good Reasons to Use ClickHouse
ClickHouse Deep Dive, by Aleksei Milovidov
All About JSON and ClickHouse - Tips, Tricks and New Features-2022-07-26-FINA...
Altinity Quickstart for ClickHouse
Delta Lake with Azure Databricks
Evening out the uneven: dealing with skew in Flink
Tricks every ClickHouse designer should know, by Robert Hodges, Altinity CEO
Introduction to the Mysteries of ClickHouse Replication, By Robert Hodges and...
Data Warehouses in Kubernetes Visualized: the ClickHouse Kubernetes Operator UI
Parquet performance tuning: the missing guide
RocksDB Performance and Reliability Practices
CDC Stream Processing with Apache Flink
Ad

Similar to My first 90 days with ClickHouse.pdf (20)

PDF
How OLTP to OLAP Archival Demystified
PDF
How is Real-Time Analytics Different from Traditional OLAP?
PPTX
Design and Modeling for MySQL SCALE 21X Pasadena, CA Mar 2024
PDF
ClickHouse in Real Life. Case Studies and Best Practices, by Alexander Zaitsev
PDF
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
PDF
Application Monitoring using Open Source - VictoriaMetrics & Altinity ClickHo...
PDF
Application Monitoring using Open Source: VictoriaMetrics - ClickHouse
PDF
OSA Con 2022 - Quick Reflexes_ Building Real-Time Data Analytics with Redpand...
PDF
Building Real-Time Analytics Infrastructure on ClickHouse with ChistaDATA
PDF
ClickHouse Introduction by Alexander Zaitsev, Altinity CTO
PPTX
ParStream - Big Data for Business Users
PDF
Analytics with Apache Superset and ClickHouse - DoK Talks #151
PPTX
Chen li asterix db: 大数据处理开源平台
PDF
ClickHouse Analytical DBMS. Introduction and usage, by Alexander Zaitsev
PDF
Modern data warehouse
PDF
Modern data warehouse
PDF
21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...
PDF
Analytics at Speed: Introduction to ClickHouse and Common Use Cases. By Mikha...
PPTX
ClickHouse Paris Meetup. ClickHouse Analytical DBMS, Introduction. By Alexand...
PDF
Treasure Data and Heroku
How OLTP to OLAP Archival Demystified
How is Real-Time Analytics Different from Traditional OLAP?
Design and Modeling for MySQL SCALE 21X Pasadena, CA Mar 2024
ClickHouse in Real Life. Case Studies and Best Practices, by Alexander Zaitsev
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Application Monitoring using Open Source - VictoriaMetrics & Altinity ClickHo...
Application Monitoring using Open Source: VictoriaMetrics - ClickHouse
OSA Con 2022 - Quick Reflexes_ Building Real-Time Data Analytics with Redpand...
Building Real-Time Analytics Infrastructure on ClickHouse with ChistaDATA
ClickHouse Introduction by Alexander Zaitsev, Altinity CTO
ParStream - Big Data for Business Users
Analytics with Apache Superset and ClickHouse - DoK Talks #151
Chen li asterix db: 大数据处理开源平台
ClickHouse Analytical DBMS. Introduction and usage, by Alexander Zaitsev
Modern data warehouse
Modern data warehouse
21st Athens Big Data Meetup - 1st Talk - Fast and simple data exploration wit...
Analytics at Speed: Introduction to ClickHouse and Common Use Cases. By Mikha...
ClickHouse Paris Meetup. ClickHouse Analytical DBMS, Introduction. By Alexand...
Treasure Data and Heroku
Ad

More from Alkin Tezuysal (20)

PDF
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
PDF
Unified Observability - Alkin Tezuysal - FOSSASIA Summit March 2025 .pdf
PDF
Boosting MySQL with Vector Search Scale22X 2025.pdf
PDF
Boosting MySQL with Vector Search Fosdem 2025.pdf
PDF
London MySQL Day - Lightning Talk Dec 2024.pdf
PDF
Design and Modeling with MySQL and PostgreSQL - Percona University Istanbul S...
PDF
FOSSASIA - MySQL Cookbook 4e Journey APR 2023.pdf
PDF
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
PDF
MySQL Cookbook: Recipes for Developers, Alkin Tezuysal and Sveta Smirnova - P...
PDF
KubeCon_NA_2021
PDF
Integrating best of breed open source tools to vitess orchestrator pleu21
PDF
Vitess: Scalable Database Architecture - Kubernetes Community Days Africa Ap...
PDF
How to shard MariaDB like a pro - FOSDEM 2021
PDF
Vitess - Data on Kubernetes
PDF
MySQL Ecosystem in 2020
PDF
Introduction to Vitess on Kubernetes for MySQL - Webinar
PDF
When is Myrocks good? 2020 Webinar Series
PPTX
Mysql 8 vs Mariadb 10.4 Webinar 2020 Feb
PPTX
Myrocks in the wild wild west! FOSDEM 2020
PPTX
Mysql 8 vs Mariadb 10.4 Highload++ 2019
Boosting MySQL with Vector Search -THE VECTOR SEARCH CONFERENCE 2025 .pdf
Unified Observability - Alkin Tezuysal - FOSSASIA Summit March 2025 .pdf
Boosting MySQL with Vector Search Scale22X 2025.pdf
Boosting MySQL with Vector Search Fosdem 2025.pdf
London MySQL Day - Lightning Talk Dec 2024.pdf
Design and Modeling with MySQL and PostgreSQL - Percona University Istanbul S...
FOSSASIA - MySQL Cookbook 4e Journey APR 2023.pdf
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
MySQL Cookbook: Recipes for Developers, Alkin Tezuysal and Sveta Smirnova - P...
KubeCon_NA_2021
Integrating best of breed open source tools to vitess orchestrator pleu21
Vitess: Scalable Database Architecture - Kubernetes Community Days Africa Ap...
How to shard MariaDB like a pro - FOSDEM 2021
Vitess - Data on Kubernetes
MySQL Ecosystem in 2020
Introduction to Vitess on Kubernetes for MySQL - Webinar
When is Myrocks good? 2020 Webinar Series
Mysql 8 vs Mariadb 10.4 Webinar 2020 Feb
Myrocks in the wild wild west! FOSDEM 2020
Mysql 8 vs Mariadb 10.4 Highload++ 2019

Recently uploaded (20)

PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PPT
Teaching material agriculture food technology
PPTX
1. Introduction to Computer Programming.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Machine Learning_overview_presentation.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
A comparative analysis of optical character recognition models for extracting...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Teaching material agriculture food technology
1. Introduction to Computer Programming.pptx
Encapsulation_ Review paper, used for researhc scholars
Unlocking AI with Model Context Protocol (MCP)
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Machine Learning_overview_presentation.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
Advanced methodologies resolving dimensionality complications for autism neur...
Building Integrated photovoltaic BIPV_UPV.pdf
gpt5_lecture_notes_comprehensive_20250812015547.pdf
MYSQL Presentation for SQL database connectivity
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
A comparative analysis of optical character recognition models for extracting...
“AI and Expert System Decision Support & Business Intelligence Systems”
Reach Out and Touch Someone: Haptics and Empathic Computing

My first 90 days with ClickHouse.pdf

  • 1. June 7th, 2022 - My first 90 days with ClickHouse - Alkin Tezuysal - EVP Global Services - ChistaDATA Inc.
  • 2. Let’s get connected with Alkin first ● Alkin Tezuysal - EVP - Global Services @chistadata ○ Linkedin : https://www.linkedin.com/in/askdba/ ○ Twitter: https://twitter.com/ask_dba ● Open Source Database Evangelist ○ Previously PlanetScale, Percona and Pythian as Technical Manager, SRE, DBA (MySQL) ○ Previously Enterprise DBA , Informix, Oracle, DB2 , SQL Server ● Author, Speaker, Mentor, and Coach @ChistaDATA Inc. 2022 @ask_dba
  • 3. Also… Someone who is Born to Sail @ChistaDATA Inc. 2022 Forced to Work @ask_dba
  • 4. Trivia Question ? @ChistaDATA Inc. 2022 The left and right sides of the boat are referred to as what? @ask_dba
  • 5. About MySQL Cookbook 4th Edition ● O’reilly Book previously authored by Paul Dubois 3 editions ● Solutions for Database Developers and Administrators ● More than 950 pages of recipes for specific database challenges ● It took two years of authoring, rewriting, reviewing, editing and learning. ● Co-authored with Sveta Smirnova - MySQL Expert / Author , Percona @ChistaDATA Inc. 2022 @ask_dba
  • 7. About another book… By Vijay Anand ● Database Fundamentals overview ● Comparison and examples from different data stores ● Techniques, tips and tricks for ClickHouse ● Great overview and summary for beginners @ChistaDATA Inc. 2022 @ask_dba
  • 8. About ClickHouse ● Columnar Storage ● SQL Compatible ● Open Source (Apache 2.0) ● Shared Nothing Architecture ● Parallel Execution ● Rich in Aggregate Functions ● Super fast for Analytics workload ○ Compression and Encoding @ChistaDATA Inc. 2022 @ask_dba
  • 9. Other ClickHouse features ● Engine types for analytical workloads ● Materialized Views ● External data connectors ● Data types for compatibility with other sources @ChistaDATA Inc. 2022 @ask_dba
  • 10. Columnar Storage orders @ChistaDATA Inc. 2022 order_id 1 2 3 4 order_code AB-01 AB-02 AB-02 AB-03 order_amount 2.99 1.99 1.50 2.25 order_category stationary stationary stationary gifts @ask_dba
  • 11. SQL Compatible ● Full SQL parser (INSERT) ○ INSERT INTO t VALUES (1, 'Hello, world'), (2, 'abc'), (3, 'def') ● Data format parser ○ SELECT EventDate, count() AS c FROM test.hits GROUP BY EventDate WITH TOTALS ORDER BY EventDate FORMAT TabSeparated @ChistaDATA Inc. 2022 @ask_dba
  • 12. Shared Nothing Architecture Data distribution refers to splitting the very large dataset into multiple shards which are stored on different servers. ClickHouse divides the dataset into shards according to the sharding key. Each shard holds and processes a part of the data, the query results from multiple shards are then combined together to give the final result. @ChistaDATA Inc. 2022 @ask_dba
  • 14. Replication Data replication refers to keeping a copy of the data on the other server nodes for ensuring availability in case of server node failure. This can also improve performance by allowing multiple servers to process the data queries in parallel. @ChistaDATA Inc. 2022 @ask_dba
  • 15. Zookeeper Replication @ChistaDATA Inc. 2022 @ask_dba Shard_01 Shard_02 Shard_03 Shard_n Replica_01 Replica_02 Replica_03 Shard_n
  • 16. Replication & Sharding @ChistaDATA Inc. 2022 @ask_dba Shard_01 Replica_01 Clickhouse Node 1 Shard_04 Replica_04 Shard_02 Replica_02 Clickhouse Node 2 Shard_03 Replica_03 Shard_05 Replica_05 Clickhouse Node 3 Shard_06 Replica_06 Shard_n Replica_n Clickhouse Node n Shard_n Replica_n Zookeeper
  • 18. Parallel Execution ● Large queries are parallelized naturally, taking all the necessary resources available on the current server. ● Distributed processing on multiple nodes. @ChistaDATA Inc. 2022 @ask_dba
  • 19. Rich in Aggregate Functions ● Generic aggregate functions (count, min, max, avg, etc.) ○ Ton of ClickHouse specific aggregate functions ● Parametric aggregate functions (histogram, sequenceMatch, etc.) ● Combinators to change the behavior of the aggregate function (-if sumIf, avgIf)(-array sumArray, uniqArray) @ChistaDATA Inc. 2022 @ask_dba
  • 20. Super fast for Analytics workload ● Cost efficient performance against other solutions ● Improved performance on every release ● Use cases and usage increasing hence @ChistaDATA Inc. 2022 @ask_dba
  • 21. Data on Kubernetes? ● Still a controversial subject? ● Community and use cases ● Is it production grade yet? @ChistaDATA Inc. 2022 @ask_dba
  • 22. Operators ● Vitess operator by PlanetScale ● Percona XtraDB, MongoDB, PostgreSQL operators by Percona ● ClickHouse Kubernetes Operator by Altinity ● Oracle MySQL InnoDB Cluster ● More to come? Maybe … ● In the meantime other operators ○ RedShift, @ChistaDATA Inc. 2022 @ask_dba
  • 23. Altinity Operator for ClickHouse ● Creates ClickHouse clusters defined as custom resources ● Customized storage provisioning (VolumeClaim templates) ● Customized pod templates ● Customized service templates for endpoints ● ClickHouse configuration management ● ClickHouse users management ● ClickHouse cluster scaling including automatic schema propagation ● ClickHouse version upgrades ● Exporting ClickHouse metrics to Prometheus @ChistaDATA Inc. 2022 @ask_dba
  • 24. Altinity Operator for ClickHouse @ChistaDATA Inc. 2022 @ask_dba
  • 25. Altinity Operator for ClickHouse @ChistaDATA Inc. 2022 @ask_dba
  • 26. Altinity Operator for ClickHouse @ChistaDATA Inc. 2022 @ask_dba
  • 27. Open Source ClickHouse Community 1. DOK 2. ClickHouse 3. Altinity 4. ChistaDATA @ChistaDATA Inc. 2022 @ask_dba
  • 28. About ChistaDATA Inc. ● Founded in 2021 by Shiv Iyer - CEO and Principal ● Has received 3M USD seed investment ● Focusing on ClickHouse infrastructure operations ● Services around dedicated Managed Services, Support and Consulting ● We’re hiring globally DBAs, SREs and DevOps Engineers @ChistaDATA Inc. 2022 @ask_dba