Skip to main content

Distributed Deployment

Memorose supports replicated deployment with Raft and can be started locally in clustered form through the project scripts.
Typical local shape:
  • backend nodes on 3000, 3001, 3002
  • dashboard UI on 3100

Cluster Management Endpoints

  • POST /v1/cluster/initialize
  • POST /v1/cluster/join
  • DELETE /v1/cluster/nodes/:node_id

Join Payload

Example Initialization

Example Join

Operational Notes

  • In single-node mode, join and leave operate on the local raft group.
  • In sharded mode, cluster operations fan out across shard groups.
  • Leader forwarding is built into write paths, but operational cluster control still expects a healthy Raft topology.