4. Verify deployment
Monitor your cluster
When you start a cluster using yugabyted, you can monitor the cluster using the YugabyteDB UI, available at http://<IP_of_VM>:15433
, where IP_of_VM is the IP address of any node in the cluster.
Upon checking, you'll see that:
- The status of nodes, including their health and state (
RUNNING
). - The replication factor is
3
, indicating that each node maintains a replica of your data that is replicated synchronously with the Raft consensus protocol. This configuration allows your database deployment to tolerate the outage of one node without losing availability or compromising data consistency.
To view more detailed information about the cluster nodes, go to the Nodes tab.
The Number of Tablets column provides insights into how YugabyteDB distributes data and workload.
-
Tablets - YugabyteDB shards your data by splitting tables into tablets, which are then distributed across the cluster nodes (see the Total column).
-
Tablet Leaders and Peers - each tablet comprises of a tablet leader and set of tablet peers, each of which stores one copy of the data belonging to the tablet. There are as many leaders and peers for a tablet as the replication factor, and they form a Raft group. The tablet leaders are responsible for processing read/write requests that require the data belonging to the tablet. By distributed tablet leaders across the cluster, YugabyteDB is capable of scaling your data and read/write workloads.