Dedicated MQTT Clusters
Dedicated clusters provision a private MQTT broker exclusively for your workspace — isolated at the infrastructure level, with full Iotmer MQTT configuration control.
When to use dedicated clusters
- Compliance — data must not share infrastructure with other tenants
- High throughput — large device fleets where shared broker limits are a constraint
- Custom MQTT config — specific MQTT plugins, extended features, or non-standard ports
Provision a cluster
- Go to MQTT → Dedicated Clusters → New Cluster
- Select the target region
- Choose node count and size
- Click Provision
Provisioning typically takes 3–8 minutes. Progress is tracked via a job ID.

Or via API:
POST /workspaces/{id}/dedicated-clusters
Content-Type: application/json
{
"region_code": "eu-west-1",
"node_count": 3,
"node_size": "standard"
}
Monitor cluster nodes
GET /workspaces/{id}/dedicated-clusters/{cluster_id}/nodes
Returns per-node status, resource usage, and connection metrics.
Estimate cost before provisioning
POST /workspaces/{id}/dedicated-clusters/estimate
Content-Type: application/json
{
"region_code": "eu-west-1",
"node_count": 3,
"node_size": "standard"
}
Returns monthly cost estimate before committing.
Decommission a cluster
Decommissioning stops billing and terminates the nodes. All connected devices will be disconnected.