In this article, I will introduce Nutanix cluster components in a simple way, and I will explain all details here in more depth in another article.
Nutanix cluster contains a group of components that work together in harmony and depends on one another, and I will review here in a hurry the role of each element in the work of the cluster.
All components run on multiple nodes in the cluster and depend on connectivity between their peers that also run the component. Most components also depend on other components.
Zeus
A key element of a distributed system is a method for all nodes to store and update the cluster’s configuration. This configuration includes details about the physical components in the cluster, such as hosts and disks, and logical components, like containers.
The state of these components, including their IP addresses, capacities, and data replication rules, are also stored in the cluster configuration.
Zookeeper
Using multiple nodes prevents stale data from being returned to other components while having an odd number provides a method for breaking ties if two nodes have different information.
The leader receives all requests for information and confers with the two follower nodes. If the leader stops responding, a new leader is elected automatically.
Zookeeper has no dependencies, meaning that it can start without any other cluster components running.
For additional information about Zeus & Zookeeper click here
Medusa
Distributed systems that store data for other systems (for example, a hypervisor that hosts virtual machines) must have a way to keep track of where that data is.
In the case of a Nutanix cluster, it is also important to track where the replicas of that data are stored.
Cassandra
In the case of NFS datastores, Cassandra also holds small files saved in the datastore. When a file reaches 512K in size, the cluster creates a vDisk to hold the data.
These nodes communicate with each other once a second using the Gossip protocol, ensuring that the state of the database is current on all nodes.
For additional information about Medusa & Cassandra click here
Stargate
A distributed system that presents storage to other systems (such as a hypervisor) needs a unified component for receiving and processing data that it receives.
The Nutanix cluster has a large software component called Stargate that manages this responsibility.
Curator
In a distributed system, it is important to have a component that watches over the entire process. Otherwise, metadata that points to unused blocks of data could pile up, or data could become unbalanced, either across nodes or across disk tiers.
In the Nutanix cluster, each node runs a Curator process that handles these responsibilities.
For additional information about Curator click here
Prism
A distributed system is worthless if users can’t access it. This includes the nCLI and web console.
This allows administrators to access Prism using any Controller VM IP address. If the Prism leader fails, a new leader is elected.
It also communicates with the ESXi hosts for VM status and related information.
For additional information about Prism click here
Thanks for Reading!