commit | 8caee7f6018cf531e180d941198263d1ca4ce0de | [log] [tgz] |
---|---|---|
author | CooooolFrog <zuliangwanghust@gmail.com> | Wed Feb 22 14:02:43 2023 +0800 |
committer | GitHub <noreply@github.com> | Wed Feb 22 14:02:43 2023 +0800 |
tree | b3f46a73f1fa6719b81ffd39c6f076f0985758cf | |
parent | d4087072117ce17a6a57819739c80fd8e9369aea [diff] |
fix: add node state check in transfer leader procedure & support multi-node concurrent shard opening. (#134) * add node state check in transfer leader procedure add node parallelism in scheduler add getShardNodes interface * fix reopen shard * add todo issue
CeresMeta is the meta service for managing the CeresDB cluster.
The project is in a very early stage.
make build
Although CeresMeta is designed to deployed as a cluster with three or more instances, it can also be started standalone:
# ceresmeta0 mkdir /tmp/ceresmeta0 ./ceresmeta --config ./config/example-standalone.toml
Here is an example for starting CeresMeta in cluster mode (three instances) on single machine by using different ports:
# Create directories. mkdir /tmp/ceresmeta0 mkdir /tmp/ceresmeta1 mkdir /tmp/ceresmeta2 # Ceresmeta0 ./ceresmeta --config ./config/exampl-cluster0.toml # Ceresmeta1 ./ceresmeta --config ./config/exampl-cluster1.toml # Ceresmeta2 ./ceresmeta --config ./config/exampl-cluster2.toml
CeresMeta refers to the excellent project pd in design and some module and codes are forked from pd, thanks to the TiKV team.
The project is under rapid development so that any contribution is welcome. Check our Contributing Guide and make your first contribution!
CeresMeta is under Apache License 2.0.