About Can Sayn
Can Sayın is experienced Database Administrator in open source relational and NoSql databases, working in complicated infrastructures. Over 5 years industry experience, he gain managing database systems. He is working at ChistaDATA Inc. His areas of interest are generally on open source systems.
Contact: Website

Monitoring Replication Queue In ClickHouse

system.replication_queue table contains information about tasks from replication queues stored in ClickHouse Keeper, or ZooKeeper, for tables in the ReplicatedMergeTree family. You can run the following SQL statements to monitor the replication queue in ClickHouse. Example […]

Transaction Isolation Levels in ClickHouse

Introduction In this article, we will talk about the isolation levels used in database systems. As you know, four different features maintain consistency in a database. These are; Atomicity, Consistency, Isolation, and Durability (ACID for […]

ClickHouse Change Log Level

  The Clickhouse server logs are often useful in diagnosing issues and understanding how clients are interacting with Clickhouse. They are however fairly low level and detailed out of the box. At this stage therefore, […]

Migration From MySql To ClickHouse

Transfer the data from MySQL into ClickHouse   Recommended solution – MinervaDB ClickHouse MySQL Data Reader (forked from Alitinity/clickhouse-mysql-data-reader ) GitHub – https://github.com/MinervaDB/MinervaDB-ClickHouse-MySQL-Data-Reader Installation and configuration   ** Prerequisites – we have to install pip3 […]

ClickHouse ATTACH Statement

Attaches a table or a dictionary, for example, when moving a database to another server. The query does not create data on the disk, but assumes that data is already in the appropriate places, and […]

Examining Errors Generated By ClickHouse

Log of query execution Controlled by session level setting send_logs_level Possible values: ‘trace’, ‘debug’, ‘information’, ‘warning’, ‘error’, ‘fatal’, ‘none’ Can be used with clickhouse-client in both interactive and non-interactive mode. clickhouse-client -mn –send_logs_level=’trace’ –query “SELECT sum(number) FROM numbers(1000)” Result; […]

Ingesting Data From MongoDB

In this article, you will learn how to read your data from ClickHouse which is stored in MongoDB. MongoDB engine is read-only table engine which allows to read data (SELECT queries) from remote MongoDB collection. Engine […]

Finding The Queries That Resulted In An Error

  In ClickHouse, there is a table called query_log which is located in system database. query_log table gives you information about all the queries running on the database. This is an useful option for troubleshooting […]

1 5 6 7 8 9