Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 841 Bytes

dingodb_0_2_0_rn.md

File metadata and controls

19 lines (15 loc) · 841 Bytes

Release Notes v0.2.0

  • Architecture

    1. Refactor DingoDB architecture abandon Zookeeper, Kafka and Helix.
    2. Using raft as the consensus protocol to make agreement across multiple nodes on membership selection and data replication.
    3. Region is proposed as the unit of data replication, it can be scheduled, split, managed by coordinator.
    4. The distributed file system is replaced by distributed key-value implemented by raft and rocksdb.
  • Distributed Storage

    1. Support region to replicate across multiple nodes.
    2. Support region to split based on policies such as key counts or region size.
    3. Support Region to perform periodic snapshot.
  • SQL

    1. Support more aggregation functions, such as min,max,avg, etc.
    2. Support insert into ... select.
  • Client Tools

    1. thin jdbc driver