commit | a3baa122ed3fd7c0fd9a280268cc34b896b6a62b | [log] [tgz] |
---|---|---|
author | CooooolFrog <zuliangwanghust@gmail.com> | Wed Oct 11 17:20:50 2023 +0800 |
committer | GitHub <noreply@github.com> | Wed Oct 11 04:20:50 2023 -0500 |
tree | a5503f69cea3b436b8ddb75182feecebf5d64922 | |
parent | 0ffbf5c6787bec6b43fa03f2f25f00f60313cb22 [diff] |
fix: return error when single node is not found in static topology (#226) ## Rationale Fix return error when single node is not found in static topology, make it is possible to assign shards to nodes when a single node is not found. ## Detailed Changes Just continue instead of return error when single node is not found in static topology. ## Test Plan Pass all unit tests and integration test.
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.