|
| 1 | +--- |
| 2 | +id: saas-orchestration-architecture |
| 3 | +title: "SaaS orchestration architecture" |
| 4 | +description: "Learn about the new streamlined SaaS orchestration architecture in Camunda 8.9." |
| 5 | +--- |
| 6 | + |
| 7 | +import PageDescription from '@site/src/components/PageDescription'; |
| 8 | + |
| 9 | +<PageDescription /> |
| 10 | + |
| 11 | +## About |
| 12 | + |
| 13 | +Camunda 8.9 introduces a streamlined SaaS orchestration architecture. The runtime for Operate, Tasklist, Identity (Admin), and the Zeebe REST API is unified into a single orchestration service. Zeebe brokers continue to run separately and execute workflows as before. |
| 14 | + |
| 15 | +This is a topology change in SaaS only and does not affect Self-Managed deployments. |
| 16 | + |
| 17 | +What's new: |
| 18 | + |
| 19 | +- [Unified API domain for Orchestration Clusters](#unified-api-domain-for-orchestration-clusters). Legacy hostnames are deprecated. |
| 20 | +- [New client credentials use new API URLs.](#client-credentials-and-legacy-hostnames) |
| 21 | +- [`service` labels have changed on Orchestration Cluster metrics.](#service-label-changes) |
| 22 | + |
| 23 | +What didn't change: |
| 24 | + |
| 25 | +- The same UIs for Operate, Tasklist, and Admin/Identity and the REST API remain available as before. |
| 26 | +- The Zeebe gRPC endpoint is unchanged. |
| 27 | + |
| 28 | +:::info |
| 29 | + |
| 30 | +The new architecture has been validated against Camunda's documented sizing and performance expectations to prevent regressions when upgrading from 8.8.latest to 8.9. |
| 31 | + |
| 32 | +::: |
| 33 | + |
| 34 | +## Unified API domain for Orchestration Clusters |
| 35 | + |
| 36 | +Camunda 8.9 introduces a unified API domain for Orchestration Clusters. All services are now accessible under a single base URL: |
| 37 | + |
| 38 | +| Service | Unified URL (8.9) | |
| 39 | +| :------------------ | :----------------------------------------------------------- | |
| 40 | +| Base / REST API | `https://<region>.api.<camunda-domain>/<clusterId>` | |
| 41 | +| Operate UI | `https://<region>.api.<camunda-domain>/<clusterId>/operate` | |
| 42 | +| Tasklist UI | `https://<region>.api.<camunda-domain>/<clusterId>/tasklist` | |
| 43 | +| Admin (Identity) UI | `https://<region>.api.<camunda-domain>/<clusterId>/admin` | |
| 44 | + |
| 45 | +Legacy hostnames (`*.zeebe.<camunda-domain>`, `*.operate.<camunda-domain>`, `*.tasklist.<camunda-domain>`, and `*.identity.<camunda-domain>`) continue to work in 8.9 and are internally routed to the unified service, but are deprecated and scheduled for removal in 8.10. |
| 46 | + |
| 47 | +After the 8.10 release, only the Zeebe gRPC endpoint and the unified `*.api.*` ingress will remain. |
| 48 | + |
| 49 | +### Deprecation |
| 50 | + |
| 51 | +Legacy hostnames are deprecated as of 8.9 and will be removed in 8.10. Migrate any hard-coded URLs for Operate, Tasklist, or Identity to the new unified `*.api.*` URLs during the 8.9 lifecycle to ensure readiness before the 8.10 release. |
| 52 | + |
| 53 | +## Client credentials and legacy hostnames |
| 54 | + |
| 55 | +Existing client credentials downloaded from Console for pre-8.9 clusters may reference legacy hostnames. Because those hostnames remain available in 8.9, existing credentials continue to work after a cluster is upgraded to 8.9. No immediate action is required. |
| 56 | + |
| 57 | +### Recommended action |
| 58 | + |
| 59 | +For long-lived automation and CI/CD systems, Camunda recommends updating credentials to use the new unified `*.api.*` URLs and corresponding token audience values before 8.10. You have two options: |
| 60 | + |
| 61 | +- **Update existing credentials manually:** Edit the hostnames and token audience values in your existing credential configuration to reference the new unified URLs. |
| 62 | +- **Create new credentials:** Create a fresh set of client credentials in Camunda Console, which will be generated with the unified API URLs and correct audience values by default. |
| 63 | + |
| 64 | +## Service label changes |
| 65 | + |
| 66 | +<span className="badge badge--breaking-change">Breaking change</span> |
| 67 | + |
| 68 | +Due to the streamlined orchestration architecture introduced in 8.9, metrics previously emitted by the individual Operate, Tasklist, and Identity services are now emitted by the unified orchestration service. As a result, the `service` label on affected metrics will change to reflect the new source service. |
| 69 | + |
| 70 | +This applies to Camunda 8 SaaS clusters using the [Cluster Metrics endpoint](/components/saas/monitoring/cluster-metrics-endpoint/set-up-cluster-metrics-endpoint.md). |
| 71 | + |
| 72 | +### Impact |
| 73 | + |
| 74 | +Monitoring dashboards, alerting rules, or queries that filter or group by the `service` label on Orchestration Cluster metrics may stop matching expected values after upgrading to 8.9, as some metrics will now be emitted by a different source service. |
| 75 | + |
| 76 | +### Action required |
| 77 | + |
| 78 | +After your cluster is upgraded to 8.9, review your dashboards and alerting rules and verify the `service` label values metrics are returning. Update any Prometheus queries or alert definitions that no longer match. |
| 79 | + |
| 80 | +## Upgrade behavior and expected downtime |
| 81 | + |
| 82 | +When a Camunda 8 SaaS Orchestration Cluster is upgraded from 8.8 to 8.9: |
| 83 | + |
| 84 | +1. The existing Operate and Tasklist components are shut down. |
| 85 | +2. The unified orchestration service starts in their place. |
| 86 | +3. Ingress routes are updated so legacy hostnames continue to resolve while the new `*.api.*` endpoints become active. |
| 87 | + |
| 88 | +### Impact during upgrade |
| 89 | + |
| 90 | +- **Web UIs and REST API:** You should expect a short interruption while the old services are removed and the unified service becomes ready. |
| 91 | +- **Workflow execution (Zeebe brokers):** Designed to remain running throughout the upgrade. The primary impact is limited to UI and API availability, not to engine execution state. |
| 92 | + |
| 93 | +To upgrade, initiate the cluster upgrade to 8.9 from Camunda Console. No additional steps are required beyond the URL and credential recommendations above. |
| 94 | + |
| 95 | +## SaaS: Streamlined orchestration architecture |
| 96 | + |
| 97 | +Camunda 8.9 introduces a streamlined SaaS orchestration architecture. The runtime for Operate, Tasklist, Identity (Admin), and the Zeebe REST API is unified into a single orchestration service. Zeebe brokers continue to run separately and execute workflows as before. |
| 98 | + |
| 99 | +This is a topology change in SaaS only and does not affect Self-Managed deployments. |
| 100 | + |
| 101 | +What changed: |
| 102 | + |
| 103 | +- Unified API domain for Orchestration Clusters. Legacy hostnames are deprecated. |
| 104 | +- New client credentials use new API URLs. |
| 105 | +- Service labels have changed on Orchestration Cluster metrics. |
| 106 | + |
| 107 | +What didn't change: |
| 108 | + |
| 109 | +- The same UIs (Operate, Tasklist, Admin/Identity) and REST API remain available as before. |
| 110 | +- The Zeebe gRPC endpoint is unchanged. |
| 111 | + |
| 112 | +:::info |
| 113 | + |
| 114 | +The new architecture has been validated against Camunda's documented sizing and performance expectations to prevent regressions when upgrading from 8.8.latest to 8.9. |
| 115 | + |
| 116 | +::: |
| 117 | + |
| 118 | +### Unified API domain for Orchestration Clusters |
| 119 | + |
| 120 | +Camunda 8.9 introduces a unified API domain for Orchestration Clusters. All services are now accessible under a single base URL: |
| 121 | + |
| 122 | +| Service | Unified URL (8.9) | |
| 123 | +| :------------------ | :----------------------------------------------------------- | |
| 124 | +| Base / REST API | `https://<region>.api.<camunda-domain>/<clusterId>` | |
| 125 | +| Operate UI | `https://<region>.api.<camunda-domain>/<clusterId>/operate` | |
| 126 | +| Tasklist UI | `https://<region>.api.<camunda-domain>/<clusterId>/tasklist` | |
| 127 | +| Admin (Identity) UI | `https://<region>.api.<camunda-domain>/<clusterId>/admin` | |
| 128 | + |
| 129 | +Legacy hostnames (`*.zeebe.<camunda-domain>`, `*.operate.<camunda-domain>`, `*.tasklist.<camunda-domain>`, and `*.identity.<camunda-domain>`) continue to work in 8.9 and are internally routed to the unified service, but are deprecated and scheduled for removal in 8.10. |
| 130 | + |
| 131 | +After the 8.10 release, only the Zeebe gRPC endpoint and the unified `*.api.*` ingress will remain. |
| 132 | + |
| 133 | +#### Deprecation |
| 134 | + |
| 135 | +Legacy hostnames are deprecated as of 8.9 and will be removed in 8.10. Migrate any hard-coded URLs for Operate, Tasklist, or Identity to the new unified _.api._ URLs during the 8.9 lifecycle to ensure readiness before the 8.10 release. |
| 136 | + |
| 137 | +#### Are you affected? |
| 138 | + |
| 139 | +This change applies to you if you are using the Orchestration Cluster APIs with Camunda 8 Saas. |
| 140 | + |
| 141 | +### Client credentials |
| 142 | + |
| 143 | +Existing client credentials downloaded from Console for pre-8.9 clusters may reference legacy hostnames. Because those hostnames remain available in 8.9, existing credentials continue to work after a cluster is upgraded to 8.9. No immediate action is required. |
0 commit comments