commit | 81b8d6884f3e9279353774d67b418fa12765cdcb | [log] [tgz] |
---|---|---|
author | CooooolFrog <zuliangwanghust@gmail.com> | Thu Nov 09 11:22:10 2023 +0800 |
committer | GitHub <noreply@github.com> | Thu Nov 09 11:22:10 2023 +0800 |
tree | 4af70e8f7c0394f8907d82f824520440b153822b | |
parent | 7afb29523785108d5c84d163f693c6a5c2e574c4 [diff] |
fix: fix update shard view (#270) ## Rationale Fix the problem of updating `shardview` in memory that existed in the previous pr https://github.com/CeresDB/ceresmeta/pull/268. ## Detailed Changes * Update `shardTableMapping` in memory. ## 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.