Skip to main content

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

  1. Go to MQTT → Dedicated Clusters → New Cluster
  2. Select the target region
  3. Choose node count and size
  4. Click Provision

Provisioning typically takes 3–8 minutes. Progress is tracked via a job ID.

Dedicated cluster provisioning

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.