Skip to content

Latest commit

 

History

History
141 lines (93 loc) · 11.5 KB

2023-02-23-cloud-native-architecture.md

File metadata and controls

141 lines (93 loc) · 11.5 KB

The Design of TiFlash Cloud Native Architecture

Solve what problem?

The current TiFlash architecture is a typical shared nothing architecture, which brings some drawbacks:

  1. Storage and computation cannot be scaled separately
  2. Write and read operations land on the same nodes and can affect each other, including using up IO, CPU, and other resources.
    • AP query tasks are typically heavy and can suddenly spike on demand.
  3. Scaling is slow because data must be re-synchronized from TiKV nodes to TiFlash nodes.
  4. The cost-efficiency is not optimal.
    • For example, all TiFlash instances need to be kept running even during the periods of low query demand. Most of the computation resources are wasted.

Basic ideas

We split TiFlash node into the following nodes:

  1. Write Node (WN) is responsible for storing raft logs, decoding the data, and writing it to memtable. The data written to disk by memtable will be uploaded to S3 for persistence. And it triggers remote compaction as appropriate. It also provides data shopshot information for query, such as data files involved in query.
  2. Read Node (RN) is responsible for the query. To start the query, it need to first request Writes Nodes to obtain the necessary snapshot information and Memtable data in memory, and then directly request S3 to run queries, no need to interact with Write Nodes any more. It uses the local disk that comes with the ec2 node to do data caching to improve query performance.
  3. Compaction Worker is used to handle various background tasks from Write Nodes offload to avoid affecting the foreground thread. Since it is a stateless node, it is very convenient to apply for resources dynamically and avoid compaction delays.

Advantages

  1. Storage and calculation separation reduces deployment costs
    • Storage and computing resources can be scaled separately on demand to avoid resource mismatch
    • Light and heavy queries can be supported by different Query Tenants respectively. For example, heavy computations can be temporarily launched to complete calculations and then destroyed after use.
  2. Separating reads and writes improves stability. Data synchronization, data reorganization logic, and query load are physically separated, which can prevent heavy AP query loads from crowding out system resources.
  3. Greatly increase the speed of volume expansion and contraction
    • Because RN is stateless, in theory, expansion and Load Balance can be completed in a few seconds.
    • The Region migration on WN does not need to resynchronize the snapshot from the TiKV. Instead, migration is completed by downloading or referencing the S3 file directly. It is expected that a new node can complete load balancing within one minute.
  4. Improves Scalability while retaining the performance benefits of locality
    • RN can use the local disk as an LRU cache, so that most of the hot data does not need to read S3

Core Design

Main challenges

The most critical issue of this architecture is: How can the data generated by Write Node be read by Read Node in a real-time and efficient way . To solve this issue, you need to first understand the difficulties faced by this architecture in a cloud environment. Here I mainly use AWS as an example, similar to other cloud vendors.

  1. Reading Node directly requesting Write Node to read data is not the best solution

    • If all the data is sent directly sent to RN via the network, it is not the most efficient solution because of the additional cost of encoding/decoding. Even if RN cache the data on the local disk, the first read will put a lot of pressure on WN. And RN is difficult to cache in this way, because the data pulled over is no completed.
    • WN has to process read requests, so it does not achieve complete separation of storage and calculation. With the increase of read load, WN is easy to become a system bottleneck

    The best solution is to let RN to read data directly from shared storage without going through WN. And this shared storage needs to meet some requirements, see 2.

  2. There is no suitable shared storage for storing all data

    The main difficulty lies in latency sensitive data, including raft log data. Ideally, the storage of this part of the data should have these characteristics

    • Low Latency - Sync data from TiKV to TiFlash node as quickly as possible
    • Low cost - cost reduction is one of the most important goals
    • High Durability and High Availability - Quickly restore node state after ec2 failure or restart

    Options:

    • EFS cost is too high to achieve the purpose of cost reduction
    • Although AWS's EBS does have IOPS types that can be accessed by multiple nodes, it has many limitations. So they do not meet the needs of distributed databases for shared storage. Further more, they are expensive.
    • S3 provides high durability and high availability at a low cost. And the throughput is high. The main issue is that the read and write latency are too high.
      • The throughput of S3 can fill the internet bandwidth of an EC2 node. For example, 16 Core ec2 node can easilly use up all the internet bandwidth (625 MB/s) by reading S3 files.
      • The delay of the S3 request is 10 ms~ 1 s
    S3 (Standard) EBS (gp3) Local disk
    Durability 99.999999999% 99.8% - 99.9% Follow the ec2 node, ec2 is down or hangs up, and data loss is not guaranteed. However, the SLA of AWS guarantees that if Uptime is lower than 95.0%, it will be 100% free of charge
    Availability 99.99% No clear official doc found, let's assume it equals durability Ditto
    IO Latency 10 ms ~ 2 s <10ms ~100 μs

Solution: Use different storages to store different data

Based on the above analysis, it is impossible to find a perfect shared storage that meets all data requirements. A natural idea is to split the data into aparts and store them to different storage

  1. Most of the data is stored in S3
    • S3 is used to store the latency insensitive data, including various files written to disk in the DeltaTree Storage Engine
    • RN read most of the data from S3, and requests WN for other data (the latest data) during queries.
  2. IO latency sensitive data is directly written to Write Node's local disk and uploaded to S3 periodically. I.e. it uses the local disk as a buffer
    • About durability - if data from local disk is lost, recover from TiKV. Equivalent to relying on upstream TiKV to provide high durability.
    • About availability - Data needs to be resynchronized after restart. And the time for service recovery is affected by the delay of synchronized data. Since we upload data periodically (for example 30s), the actual data to be resynchronized is incremental data relative to the last upload point. The total amount of data should be small, so it should not take very long time. It means the available duration should not be a big issue.

How to upload S3?

According to the above design, no matter what kind of data, it will always be uploaded to S3 in the end. One of the key questions is: how to upload S3?

  • Synchronous or asynchronous?
  • How often to upload?
  • Do you want to save batches and how to save batches?
  • How to ensure consistency after data recovery from S3?

To answer the above questions, let's first look at the data distribution and flow of in TiFlash.

  1. Raft log - raft log is the data that has just been synced from the TiKV raft leader to TiFlash , and has not yet been applied to the column storage engine (Delta Tree Engine). After applying to storage engine successfully, it will be deleted.
    • It belongs to IO latency sensitive data and cannot upload S3 right after it is written.
  2. Column data - The column data in DeltaTree Engine is divided into memtable and column file persisted on disk. Note that DeltaTree Engine has no WAL, no flush data, so it depends on raft log to replay the lost updates after restart.
    • Although there is memtable as a write buffer, the write IOPS caused by Delta Tree's flush also reaches 500 IOPS under busy conditions. So this part of the data should also be counted in the storage delay sensitive data and cannot be uploaded immediately.
    • The column files that have just been flushed to disk are usually relatively small. In order to avoid too much fragmentation, there will be compaction workers in the background to organize and merge it into a larger column files. Column files data is not IO latency sensitive and can be uploaded to S3 before confirming that the write is successful.

If we want to use different strategies for different data types, it will undoubtedly be a lot of work.

What's more troublesome is that it is very complicated to achieve the consistency of the files saved by TiFlash in S3: How to ensure that all local IO operations can be saved to S3 in the correct way, so that TiFlash does not lose internal consistency after restoring the state from the S3 backup. There are several reasons for this difficulty.

  1. Different IO types have different strategies for synchronizing to S3, namely Synchronization Mode vs Asynchronous Mode, making dependencies very difficult to manage
  2. The code for handling raft log and the code for column data are in different modules, and it is difficult to establish complex dependencies between modules

Solution: All data is stored in PageStorage

PageStorage can be treated as a local Key Value store, which can store PageID - > Page pairs. Pages are bytes and sizes range from 1KB to 100MB.

  1. Pages can be stored permanently while avoiding the resulting write amplification
  2. It supports for External Pages, that is, storing larger Pages externally. This feature allows PS to manage large files, such as DTFile (SSTFile similar to LSM Tree).
  3. It supports for Ref Pages, similar to hard link for file system
  4. It supports MVCC Snapshot, that is, the application layer can obtain a fixed data view according to the Snapshot

Managing these complex IO dependencies at the application layer is doomed to have no future. We choose to store all TiFlash data in PageStorage (PS), and then PS upload all data changes periodically. Since PS suppots snapshots, it can solve the consistency problem.

So the basic upload mechanism works like EBS snapshot, i.e. uploading changes to S3 periodically.

  1. It has been guaranteed that if the PS state on the TiFlash disk at a certain time t is S(t). At this time restart, the PS based on the local disk can be restored to the state S(t)
  2. We get PS snapshot at time t and upload all the data in the snapshot to S3 and generate file F. Then the TiFlash state recovered from F must be equal to S(t)

Here is the new architecture:

Key Implementation Points

  • Periodically upload checkpoints and delta data to S3 by WN.
  • Store raft logs data into PageStorage instead of storing in raft-engine.
  • Support generating query snapshots by WN and sending latest data to RN
  • Support directly read data from S3 by RN, and cache data to local disk for faster access
  • Support Fast Add Peer. i.e. TiFlash WN use the data uploaded by other WNs as region snapshot during apply snapshot. The detail design will be covered by other document.
  • Support S3 GC. The data files on S3 are shared among WNs. It is pretty difficult to decide whether a file can be deleted or not. The detail design will be covered by other document.