×
Community Blog The Open-Source Real-Time Data Warehouse Solution Based on EMR OLAP - ClickHouse Transaction Implementation

The Open-Source Real-Time Data Warehouse Solution Based on EMR OLAP - ClickHouse Transaction Implementation

This article describes the solution of an open-source real-time data warehouse based on EMR OLAP.

By Alibaba Cloud EMR-OLAP Team

The Team is mainly responsible for the R&D of open-source big data OLAP engines, such as ClickHouse, StarRocks, and Trino. The Team also provides Alibaba Cloud users with comprehensive big data OLAP solutions through EMR.

Alibaba Cloud EMR OLAP works with Flink to support Exactly-Once writing from Flink to ClickHouse, which ensures data accuracy in the entire real-time data warehouse. This article describes the solution of an open-source real-time data warehouse based on EMR OLAP.

Contents:

  1. Background
  2. Mechanism
  3. Technical Solutions
  4. Test Results
  5. Future Planning

1. Background

Flink and ClickHouse are leaders in real-time streaming computing and OLAP, respectively. Clients in fields, such as the Internet, advertising, and gaming, have combined the two to build user profiles, real-time BI reports, metric queries of application monitoring, and monitoring services, which form a real-time data warehouse solution (shown in Figure 1). These services have strict requirements for data accuracy. Therefore, the entire procedure of real-time data warehouses needs to ensure end-to-end Exactly-Once.

Generally, the upstream of Flink is pull-based persistent storage (such as Kafka) that can be read or consumed repeatedly. We only need to trace back the reading progress on the Source side to implement Exactly-Once on the Source side. Exactly-Once on the Sink side is more complicated since the Sink is push-based and needs to be guaranteed by the transactions of the target output system. However, ClickHouse does not support transactions.

Therefore, Alibaba Cloud EMR ClickHouse works with Flink to support Exactly-Once writing from Flink to ClickHouse, which ensures the data accuracy of the entire real-time data warehouse. This article will introduce the existing mechanisms and implementation schemes.

1
Figure 1 - Real-Time Data Warehouse Architecture

2. Mechanism

ClickHouse Writing Mechanism

ClickHouse is a columnar OLAP system with MPP architecture (shown in Figure 2). Each node is peer-to-peer. A large amount of data can be imported by writing local tables to eac h node concurrently using ZooKeeper to collaborate the data.

The data part of ClickHouse is the smallest unit for data storage. When data Blocks received by ClickHouse are written, they are split based on partitions to form one or more data parts. After the data parts are written to the disk, small data parts are merged into large ones through the background merge thread to reduce the storage and reading overhead.

When writing data to a local table, ClickHouse writes a temporary data part that is invisible to the client. Then, it performs the rename operation to make this temporary data part a formal one. At this time, the data in it is visible to the client. Almost all temporary data parts will be converted into formal data parts by the rename operation. Temporary data parts that are not converted will be deleted from the disk by the ClickHouse cleanup policy.

The preceding analysis shows that the data writing of ClickHouse has a mechanism of conversion from temporary data parts to formal data parts, which can be modified to conform to the two-phase commit protocol. This is an important protocol to realize the consistency of transaction committing in distributed systems.

2
Figure 2 – Write Flink Tasks to ClickHouse

Note: Multiple Flink tasks can be written to the same shard or replica.

Flink Writing Mechanism

As a distributed processing engine, Flink provides a transaction-based sink mechanism that can ensure Exactly-Once data writing. The corresponding data receiver must provide JDBC that complies with the XA specification. Since the complete XA specification is complex, we analyze the processing mechanism of Flink first and determine the scope of interfaces to be implemented based on the real-world situation of ClickHouse.

Flink uses the checkpoint mechanism to implement unified transaction commit during distributed writing. This mechanism can periodically generate snapshots of the state in each Operator and persist them in storage. There is a Coordinator that coordinates the behavior of all Operators in the checkpoint mechanism. From the perspective of the Operator, a checkpoint has three stages: initialization > snapshot generation > checkpoint completion/deprecation. From the perspective of the Coordinator, you need to trigger the checkpoint regularly and trigger the complete notification after all Operators generate and persist the snapshot. (Refer to Appendix 1)

The following section describes how the Operator in Flink uses the transaction and checkpoint mechanism to ensure Exactly-Once. The complete execution of the Operator includes the initial, writeData, snapshot, commit, and close stages.

initial Stage

  • Obtain the persistent xid record in the last task from the snapshot. Two types of xids are stored in snapshots; one has not completed the snapshot stage, and the other has completed it.
  • Next, perform the rollback operation on the xid that has not completed snapshot, and perform the commit retry operation on the xid that has completed the snapshot but failed to commit
  • If the preceding operation fails, task initialization fails, and the task aborts and enters the close stage. If the preceding operation succeeds, go to the next step.
  • Create a new, unique xid as the ID of this transaction and record it in the snapshot
  • Use the newly generated xid to call the start() interface provided by JDBC

writeData Stage

  • After a transaction is enabled, it enters the writing data stage, which consumes most of the time of the Operator. In the interaction with ClickHouse, this stage calls the addBatch() and executeBatch() interfaces of preparedStatement provided by JDBC. Each time data is written, the current xid is carried in the message.
  • In the data writing stage, the data is written to the Operator memory first. There are three trigger methods to submit batch data in the memory to ClickHouse:
  1. Automatic submitting when the number of data entries in the memory reaches the batchsize threshold
  2. Automatic flush triggered by the background timing thread at regular intervals
  3. Call the flush to clear the cache before calling the end() and prepare() interfaces in the snapshot stage

snapshot Stage

  • The current transaction calls the end() and prepare() interfaces, waits for committing, and updates the status in the snapshot.
  • Next, a new transaction will be opened as the next xid of this task. The new transaction will be recorded in the snapshot, and the start() interface provided by JDBC will be called to open the new transaction.
  • Persist the snapshot in the storage

complete Stage

After the snapshot stage of all Operators is completed normally, the Coordinator notifies all Operators to perform a complete operation on succeeded checkpoints. In the interaction with ClickHouse, Operators call the commit() interface provided by JDBC to commit the transaction in this stage.

close Stage

  • If the current transaction has not entered the snapshot stage yet, the rollback operation is performed on the current transaction.
  • Disable all resources

As can be concluded from the preceding process, Flink uses the checkpoint and transaction mechanisms to divide input data into batches based on checkpoint cycles. After all the data is written, this ensures the Coordinator notifies all Operators to complete the commit operation together. When an Operator fails to write, it will return to the status of the last successful checkpoint and perform a rollback operation on all xids of this batch of checkpoints based on the xid recorded in the snapshot. If a commit operation fails, the commit operation will be retried. If it still fails, it will be handled manually.

3. Technical Solutions

Overall Solution

According to the writing mechanisms of Flink and ClickHouse, we can draw a sequence diagram of transaction writing from Flink to ClickHouse (shown in Figure 3). Since the local tables of ClickHouse are written, and the Coordinator guarantees the unified submission of transactions, ClickHouse does not need to implement the standard distributed transactions in the XA specification. It only needs to implement a few key interfaces in the two-phase commit protocol. Other interfaces are configured by default on the JDBC side.

3
Figure 3 – A Sequence Diagram of Transaction Writing from Flink to ClickHouse

ClickHouse-Server

State Machine

If we to implement ClickHouse transactions, we need to define several operations that allow the transactions to be implemented:

  • Begin: Enable a transaction
  • Write Data: Write data within a transaction
  • Commit: Commit a transaction
  • Rollback: Roll back an uncommitted transaction

Transaction Status:

  • Unknown: The transaction is not enabled, and any operation is invalid.
  • Initialized: The transaction is enabled, and all operations are allowed.
  • Committing: The transaction is being committed, and the Begin/Write Data operations are no longer allowed.
  • Committed: The transaction has been committed, and no operations are allowed.
  • Aborting: The transaction is being rolled back, and no operations are allowed.
  • Aborted: The transaction has been rolled back, and no operations are allowed.

The complete state machine is shown in Figure 4:

4
Figure 4 – A State Machine that supports ClickHouse Server Transaction

All operations in the figure are idempotent. The steps from Committing to Committed and from Aborting to Aborted require no operations. When Commit or Rollback operation is performed, the transaction status is changed to Committing or Aborting. After Commit or Rollback operation is executed, the transaction status is set to Committed or Aborted.

Transaction Processing

The Client accesses ClickHouse Server through HTTP Restful API. The interaction process of a complete transaction between Client and ClickHouse Server is shown in Figure 5:

5
Figure 5 – A Sequence Diagram of ClickHouse Transaction Processing

Normal Process

  • The Client sends a Begin Transaction request to any ClickHouse server in the ClickHouse cluster and carries the globally unique Transaction ID generated by the Client. When a ClickHouse Server receives the Begin Transaction request, it registers the Transaction ID on ZooKeeper (including creating the Transaction ID and child Znode) and initializes the Transaction status.
  • When the Client receives the response of Begin Transaction, it can write data. When ClickHouse Server receives data sent from the Client, it generates a temporary data part but does not convert it into a formal data part. ClickHouse Server records the information of the temporary data part where data is written in JSON to the transaction information on ZooKeeper.
  • After the Client completes writing data, it sends a Commit Transaction request to the ClickHouse Server. After receiving the Commit Transaction request, the ClickHouse Server converts the local temporary data part of the ClickHouse Server into the formal data part based on corresponding transaction information on ZooKeeper and updates the transaction status to Committed. Rollback is similar to Commit.

Exception Handling

  • If the same Transaction ID is found in ZooKeeper during Transaction ID creation, it is processed according to the Transaction status recorded in ZooKeeper. If the status is Unknown, the processing is continued; if the status is Initialized, the ID will be returned. Otherwise, an exception will occur.
  • Currently, only stand-alone transactions are implemented. Therefore, the Client can only write data to the ClickHouse Server node that records the Transaction ID. If ClickHouse Server receives data from transactions from other nodes, ClickHouse Server will return an error message.
  • Unlike writing data, if the Client sends a Commit Transaction request to a ClickHouse Server that does not record the Transaction ID, the ClickHouse Server does not return an error message. Instead, the ClickHouse Server address that records the Transaction ID is returned to the Client, which allows the Client to redirect to the correct ClickHouse Server. Rollback is similar to Commit.

ClickHouse-JDBC

According to the XA specification, a complete distributed transaction mechanism requires the implementation of a large number of standard interfaces (please refer to Appendix 2). In this design, only a small number of key interfaces need to be implemented. Therefore, the combination-based adapter mode is adopted to provide Flink with standard XAResource implementation based on XA interfaces. At the same time, ClickHouse Server is shielded from interfaces that do not need to be supported.

The inheritance-based adapter mode is adopted to implement XADataSource. Some default configurations, such as the number of retries of sending failure, are modified for the characteristics of Exactly-Once.

In addition, in the production environment, the load balancing of data writing is not usually conducted through distributed tables but SLB. In the Exactly-Once scenario, tasks on the Flink side must be connected to a ClickHouse Server node. Therefore, you cannot use SLB to perform load balancing. We borrowed the idea of BalanceClickHouseDataSource to solve this problem. XADataSource can have the capability of load balancing while ensuring Exactly-Once by configuring multiple IP addresses in the URL and setting write_mode to Random in the properties configuration.

Flink-Connector-ClickHouse

As a streaming data processing engine, Flink supports data writing to various data receivers. Each receiver needs to implement a specific Connector. For Exactly-Once, ClickHouse Connector adds options for XADataSource to provide the Exactly-Once feature based on the configuration of the client.

4. Test Results

Test of ClickHouse Transaction Performance

  • When the data volume of a single batch written to ClickHouse and the batch number remain the same, compare the writing performance on the Client side with a different number of concurrent writing threads. As shown in Figure 6, the throughput of ClickHouse is proportional to the number of concurrent writing threads on the Client side, regardless of whether ClickHouse enables transactions. When a transaction is enabled, the temporary data part in ClickHouse will not be converted into a formal data part immediately. So, a large number of temporary data parts will not participate in the ClickHouse merge process before the transaction is completed, which reduces the impact of disk I/O on writing performance. Therefore, the writing performance when transactions are enabled is better than when transactions are not enabled. However, the increases of batch number and temporary data parts on disks lead to increased CPU pressure during merging. This affects the writing performance and reduces the writing performance when transactions are enabled.

6
Figure 6 – ClickHouse Writing Performance Stress Testing (1)

  • When the total batch of writing to ClickHouse and the number of client-side concurrent writing threads remain the same, compare the performance when the data volume of writing to ClickHouse in a single batch is different.

As shown in Figure 7, the throughput of ClickHouse is proportional to the volume of data in a single batch, regardless of whether ClickHouse enables transactions. When a transaction is enabled, smaller amounts of data in each batch result in a greater ClickHouse throughput difference. This happens because the time spent writing each batch is relatively small in the transaction process, and the transaction will have a certain impact on this. Therefore, more batches in a transaction result in a reduced impact on writing performance. When the transaction contains more batches, the proportion of transaction processing time in writing decreases, and the ClickHouse merge has an increasing impact. This affects the performance of writing. The performance when transactions are enabled is better than when it is not enabled.

7
Figure 7 – Stress Testing of ClickHouse Writing Performance (2)

  • Overall, enabling transactions has little impact on writing performance, which is in line with our expectations.

Data Writing Performance Comparison from Flink to ClickHouse

  • For the same data volume and different checkpoint cycles, the total time consumed by Flink to write to ClickHouse is shown in Figure 8. The checkpoint cycle does not affect the time consumption of tasks that do not enable Exactly-Once. For tasks that enable Exactly-Once, the time consumption shows a trend of decreasing first and then increasing from 5s to 60s. When the checkpoint cycle is short, the transaction-related interaction between the Operator that enables Exactly-Once and ClickHouse is too frequent. When the checkpoint cycle is long, the Operator that enables Exactly-Once needs to wait until the checkpoint cycle ends before committing the last transaction to make the data visible. In this test, the checkpoint cycle data is only used as a reference. You need to make adjustments in the production environment according to the machine specifications and data writing speed.
  • In general, if the Exactly-Once feature is enabled when Flink writes to ClickHouse, the performance will be slightly affected, which is also in line with our expectations.

8
Figure 8 – Data Writing Test from Flink to ClickHouse

5. Future Planning

The transactions implemented in this version of EMR ClickHouse are incomplete. Standalone transactions are supported, but distributed transactions are not. Distributed systems generally use Meta Server for unified metadata management to support the distributed transaction mechanism. We are also planning to design ClickHouse MetaServer to support distributed transactions and remove the dependency of ClickHouse on ZooKeeper.

Appendix

[1] https://flink.apache.org/2020/10/15/from-aligned-to-unaligned-checkpoints-part-1.html

[2] https://pubs.opengroup.org/onlinepubs/009680699/toc.pdf

References

0 0 0
Share on

Alibaba EMR

58 posts | 5 followers

You may also like

Comments

Alibaba EMR

58 posts | 5 followers

Related Products