Managing Placement Groups
How to Create a Placement Group
In the left sidebar, navigate to Servers
Click the Placement Groups tab
Click + Create Placement Group
Select your Location (Mumbai or Central India)
Enter a Name for the group (e.g.,
db-cluster,web-ha-group)Select your Policy
Click + Create
Once created, the group appears in the Placement Groups list showing its Policy, Member count, Region, and Creation date.
You must choose a policy at creation time. The policy cannot be changed after the group is created.

How to Add a Server to a Placement Group
A server must be assigned to a Placement Group at creation time. You cannot add an existing running server to a group after it has been launched.
When creating a new server:
Go to Servers → Create Server
Fill in your server details (image, flavor, network, etc.)
In the Placement Group dropdown, select your group
Complete and launch the server
The server will appear as a Member in your Placement Group once its status is Active.


Viewing Placement Group Details
Click on any Placement Group name from the list to open its detail view. This page shows:
Policy — the active placement rule
Members — total number of servers currently in the group
Region — the region where the group is deployed
Created At — timestamp of when the group was created
Members table — lists each server with its name, status, flavor, vCPUs, RAM, and IP address

Examples
Example 1 — High-Availability Web Cluster
Run 3 web servers that survive individual physical host failures.
Policy: Anti-Affinity | Region: Mumbai
Steps:
Create a Placement Group named
web-hawith policy Anti-Affinity in MumbaiCreate
web-server-1and assign it toweb-haCreate
web-server-2and assign it toweb-haCreate
web-server-3and assign it toweb-ha
Each server lands on a separate physical host. A hardware failure on any one host takes down only that server — the other two continue serving traffic uninterrupted.
Example 2 — Low-Latency Database Pair
Run a primary and replica PostgreSQL server with the lowest possible replication lag.
Policy: Affinity | Region: Central India
Steps:
Create a Placement Group named
db-clusterwith policy Affinity in Central IndiaCreate
db-primaryand assign it todb-clusterCreate
db-replicaand assign it todb-cluster
Both servers run on the same physical host and share its internal network, giving you the lowest possible latency for replication traffic.
If the host fails, both servers go offline simultaneously. Use Affinity only when performance takes priority over redundancy. For mission-critical databases, consider Soft Anti-Affinity combined with application-level replication instead.
Last updated