Unified Namespace (UNS) in Data Centers

Content

Data centers continuously generate data from DCIM, building automation, IT monitoring, and business processes. A Unified Namespace (UNS) in data centers connects these previously separate information sources into a shared, real-time data foundation. That makes data consistently usable for automation, artificial intelligence (AI), digital twins, and business processes alike, from the technical infrastructure all the way to customer billing.

Rows of black server racks in a spacious, modern data center with white tiled floors and ceiling lighting, illustrating the efficiency and organization that a Unified Namespace brings to data centers.

This article shows what sets a Unified Namespace in data centers apart from a generic manufacturing architecture. It covers industry-specific use cases for AI and digital twins, plus concrete best practices. For the technical fundamentals of a UNS itself, see What Is the Unified Namespace (UNS)?

 

Unified Namespace Requirements in Data Centers

Data center operators face requirements that differ significantly from classic manufacturing. The following drivers determine how data needs to be modeled, stored, and evaluated.

Conceptual and Regulatory Drivers: Uptime Institute Tier Classification, the EU Energy Efficiency Directive, and Multi-Tenancy

The Uptime Institute Tier Classification (I–IV) defines redundancy requirements for power and cooling paths, ranging from N (no redundancy) to 2N (fully mirrored). From Tier III onward, the facility also has to be concurrently maintainable: maintenance work on one component must never put ongoing operations at risk. The EU Energy Efficiency Directive (EED, Directive 2023/1791) requires this under Article 12. Data centers with 500 kW or more of IT load must report annually to the European Database on Data Centres. Four indicators get reported: Power Usage Effectiveness (PUE), Water Usage Effectiveness (WUE), Energy Reuse Factor (ERF), and Renewable Energy Factor (REF), each due by May 15.

On top of that comes a structural peculiarity compared to manufacturing operations. A colocation operator serves several independent tenants in the same hall. These tenants don’t know each other, and some of them compete directly.

 

What Makes Data Centers Technically Different

Unlike manufacturing, a data center has no batch and no production cycle. Instead, it runs continuously, with planned maintenance windows. Power and cooling infrastructure is physically shared across multiple tenants. A cooling problem in one part of the facility can affect several tenants at once. The cooling capacity available in a hall is limited across all racks combined. An operator therefore needs full visibility across the entire facility. Capacity planning, PUE calculation, and redundancy checks only work with data from every rack of every tenant at the same time. That full visibility stays with the operator. At the tenant-portal level, a separate access control layer enforces the contractually guaranteed separation between tenant companies.

 

Data-Center-Specific Topic Structure

In a Unified Namespace in data centers, the physical hierarchy stays stable: site, hall, suite, rack, measurement. It doesn’t change with current utilization. This follows the same ISA-95 principles as in MQTT Topic Namespace Best Practices. What’s industry-specific here is the authorization layer. Every event carries a tenant ID and an access-scope field that determines which external consuming application, such as a tenant portal, is allowed to read it. The internal UNS itself stays fully visible for operational systems like capacity planning and redundancy checks.

Typical topic hierarchy, independent of tenant portal access:

  • rheinau/hall3/suite-t14/rack-r014-07/pdu-a/power/actual
  • rheinau/hall3/suite-t14/rack-r014-07/pdu-a/power/status

Incidents and redundancy events, on the other hand, get their own one-off topics:

  • rheinau/hall3/suite-t14/sla-incident/INC-2026-0718-002
  • rheinau/hall3/power/ups-module-3/redundancy-status

This data model has three industry-specific properties:

  1. Continuous rack telemetry stays fully visible to the operator. A PDU sensor publishes continuously on a fixed topic, with the tenant ID in the payload as metadata, not as an access restriction.
  2. SLA incidents and redundancy events get their own topics, because each one is an individually auditable record. The final SLA credit still remains a contractual decision, not an automated UNS output.
  3. Access scope is its own field in the payload, not a separate topic schema per tenant. That keeps the topic hierarchy lean, while authorization gets enforced at the consumer level.

The following use cases trace this structure through one continuous example site: the Rheinau campus, Hall 3, tenant suites T-14 and T-22, rack R-014-07.

 

UNS Use Cases in Data Centers

The following use cases show how this data model pays off in practice, from classic consumption telemetry to AI-driven insights and digital twins.

Facility-Wide Power/Cooling Telemetry with Tenant-Scoped Reporting

The operator sees every rack of every tenant in the UNS at all times. That’s exactly what capacity planning and load distribution need. The Unified Namespace additionally links every reading directly to the tenant’s active billing contract. Instead of exporting consumption data from the DCIM periodically and reconciling it manually with the billing system, consumption is available in real time.

Topic: rheinau/hall3/suite-t14/rack-r014-07/pdu-a/power/actual

JSON Payload:

{
	"rackId": "rack-r014-07",
	"suiteId": "suite-t14",
	"tenantId": "tenant-042",
	"pduId": "pdu-a",
	"powerKw": 8.4,
	"powerLimitKw": 12.0,
	"coolingInletTempC": 21.5,
	"billingContractId": "CTR-2026-T042-07",
	"accessScope": "tenant-portal:t14-own-only",
	"timestamp": "2026-07-18T10:00:00Z"
}

 

PUE/WUE Reporting Under the EU Energy Efficiency Directive

BMS systems have calculated PUE from total facility power and IT power for years. The Unified Namespace runs this calculation continuously and in an audit-ready way across the entire reporting year. That replaces compiling it manually once a year for the EED submission. All four indicators required under Article 12 stay traceable end to end this way.

Topic: rheinau/energy-efficiency/eed-report/2026

JSON Payload:

{
	"reportingYear": 2026,
	"itLoadKw": 2400,
	"pue": 1.32,
	"wueLPerKwh": 0.8,
	"erf": 0.05,
	"ref": 0.61,
	"euDatabaseSubmissionId": "EDC-RHEINAU-2026",
	"submissionDeadline": "2027-05-15",
	"status": "released",
	"timestamp": "2026-07-18T00:00:00Z"
}

 

SLA Incident Correlation and Uptime Evidence per Tenant

An incident affecting a tenant’s power or cooling gets recorded in the UNS with start and end time, plus the affected racks. That links ticketing and contract data, which today often live in separate systems. The final SLA credit still remains a contractual decision, for instance because of possible exclusion clauses. The UNS delivers the structured record, not the binding calculation.

Topic: rheinau/hall3/suite-t14/sla-incident/INC-2026-0718-002

JSON Payload:

{
	"incidentId": "INC-2026-0718-002",
	"tenantId": "tenant-042",
	"affectedRackIds": [
		"rack-r014-07",
		"rack-r014-08"
	],
	"affectedSystem": "cooling",
	"startTime": "2026-07-18T03:12:00Z",
	"endTime": "2026-07-18T03:47:00Z",
	"durationMin": 35,
	"slaTargetUptimePercent": 99.999,
	"creditEligible": true,
	"finalCreditDetermination": "pending_contract_review",
	"timestamp": "2026-07-18T03:47:00Z"
}

 

UPS/Redundancy Status Under the Uptime Institute Tier Classification

UPS modules, generators, and cooling paths report their redundancy status continuously to an independent failover system. Automatic transfer switches operate independently of any software layer. The Unified Namespace mirrors this status read-only, so operations and audit preparation share the same view of Tier compliance. Failover logic itself stays entirely within the electrical control system, and the UNS has no write access to it.

Topic: rheinau/hall3/power/ups-module-3/redundancy-status

JSON Payload:

{
	"upsModuleId": "ups-module-3",
	"tierLevel": "III",
	"redundancyDesign": "N+1",
	"currentState": "online",
	"standbyModulesAvailable": 1,
	"requiredStandbyModules": 1,
	"redundancySatisfied": true,
	"writeAccessFromUns": false,
	"timestamp": "2026-07-18T00:00:00Z"
}

 

AI Use Cases in Data Centers

AI use cases for a Unified Namespace in data centers only deliver value once load, cooling, and redundancy data are linked together, not through generic anomaly detection.

Cooling Optimization Within Certified Redundancy Limits

AI-driven cooling optimization has been established practice at hyperscalers for years. For colocation operators, the difference is that a model fine-tunes strictly within the Tier-certified setpoint range. It correlates individual racks’ load fluctuations with available cooling capacity, to control proactively rather than purely reactively. Approving the setpoint range itself remains the job of technical commissioning, not the model.

Topic: rheinau/hall3/ai/cooling-optimization/crac-07

JSON Payload:

{
	"cracUnitId": "crac-07",
	"model": "cooling-optimization-v2.1",
	"currentSetpointC": 22.0,
	"recommendedSetpointC": 21.5,
	"approvedRangeC": {
		"min": 20.0,
		"max": 24.0
	},
	"predictedLoadTrendKw": 5.8,
	"withinCertifiedEnvelope": true,
	"timestamp": "2026-07-18T09:00:00Z"
}

 

UPS Battery Health and Runtime Prediction

UPS systems already deliver a vendor-side estimate of battery condition. A model in the UNS refines this estimate by factoring in the actual current rack load, instead of the generic nameplate runtime. The physical battery test stays untouched by this. The model only helps prioritize maintenance actions earlier.

Topic: rheinau/hall3/ai/ups-battery-prediction/ups-module-3

JSON Payload:

{
	"upsModuleId": "ups-module-3",
	"model": "battery-health-v1.2",
	"vendorRatedRuntimeMin": 12,
	"predictedLoadAdjustedRuntimeMin": 9,
	"currentLoadKw": 148,
	"batteryHealthPercent": 87,
	"replacesPhysicalBatteryTest": false,
	"recommendation": "schedule_battery_inspection",
	"timestamp": "2026-07-18T08:00:00Z"
}

 

Digital Twin in Data Centers

The digital twin in the Unified Namespace becomes especially valuable once it integrates tenant- and redundancy-specific operational data alongside equipment parameters.

Cooling/Airflow Twin for New Rack Density Scenarios

CFD simulation for airflow and heat distribution is established practice in data center design. The digital twin goes further: it continuously calibrates itself against real, live telemetry instead of a one-off static study. That makes it especially valuable for testing higher rack densities for AI workloads before they get physically installed.

Topic: rheinau/hall3/twin/airflow/simulation

JSON Payload:

{
	"simulationId": "SIM-AIRFLOW-2026071801",
	"scenario": "increased_rack_density_test",
	"targetRackId": "rack-r014-07",
	"currentDensityKwPerRack": 8.4,
	"proposedDensityKwPerRack": 24.0,
	"predictedHotspotTempC": 27.8,
	"maxAllowedInletTempC": 27.0,
	"calibratedAgainstLiveTelemetry": true,
	"result": "exceeds_limit",
	"recommendedForLiveOperation": false,
	"timestamp": "2026-07-17T22:00:00Z"
}

 

Failure Scenario Twin for Maintenance Windows

The twin simulates whether the required redundancy actually holds during a planned maintenance window, before a UPS module actually goes offline. That replaces today’s mostly manual MOP review (Method of Procedure) with a verifiable simulation, without live-testing the concurrent maintainability requirement under Tier III/IV.

Topic: rheinau/hall3/twin/maintenance-window/simulation

JSON Payload:

{
	"simulationId": "SIM-MAINT-2026071802",
	"scenario": "planned_ups_module_offline_test",
	"targetModuleId": "ups-module-3",
	"tierRequirement": "concurrent_maintainability",
	"remainingRedundancyDuringMaintenance": "N",
	"requiredRedundancyDuringMaintenance": "N",
	"predictedRedundancySatisfied": true,
	"result": "sufficient",
	"recommendedForLiveOperation": true,
	"timestamp": "2026-07-17T20:00:00Z"
}

 

Best Practices for UNS Adoption in Data Centers

Do

  • Model tenant ID and access scope as mandatory fields. The internal UNS stays fully visible to the operator. Access scope controls what a tenant portal is allowed to read.
  • Keep redundancy status visible but isolated from the failover logic: the UNS mirrors UPS and generator status without gaining write access to the electrical control system.
  • Link SLA incidents to contract data in a structured way: only that turns per-tenant uptime evidence into a query instead of a manual research project.
  • Carry calibration status: the calibration status of energy and temperature sensors belongs in the UNS, so audits can trace measurement accuracy end to end.

Avoid

  • Running AI cooling optimization outside the certified setpoint range: can jeopardize the technical commissioning of cooling redundancy.
  • Carrying tenant data over shared topics without an access scope: undermines the contractually guaranteed confidentiality between tenant companies.
  • Calculating SLA credits manually from facility logs instead of in a structured way from the UNS: increases the risk of inconsistent or delayed uptime evidence.

 

Conclusion

A Unified Namespace in data centers is more than a generic manufacturing architecture with a data-center label slapped on. Full operator visibility, tenant-scoped access, redundancy status, and SLA evidence are separate data objects that shape the topic structure from the ground up. Three key takeaways:

  1. Full visibility for the operator, authorization for the tenant: isolation belongs at the access layer, not in the UNS’s internal data model.
  2. AI and digital twins need context. Their value only emerges from linking load, cooling, and redundancy data. They never replace technical commissioning or the contractual SLA decision.
  3. Regulation is an architecture driver, not a compliance afterthought. The Uptime Institute Tier Classification and EED Article 12 determine which data must exist. They also determine the required granularity and retention period.

Building these industry-specific requirements into the topic structure from day one avoids costly rework later. It also leaves you ready to build AI and digital-twin use cases directly on a solid, tenant-scoped data foundation.

About i-flow: i-flow is an industrial software company based in southern Germany. The company stands for a new era of self-connecting factories — and the end of manual integration. Its platform connects factories fully automatically, at any scale, worldwide. Over 750 million data operations per day in production-critical environments demonstrate the scalability of the software and the deep trust that customers place in i-flow. This success is based on close collaboration with customers and partners worldwide, including renowned Fortune 500 companies and industry leaders like Bosch.

Related Articles

Your question has not been answered? Contact us.

Eine Frau mit braunen Haaren, einem dunkelblauen Hemd und einer hellen Hose steht lächelnd mit den Händen in den Taschen vor einem steinernen Gebäude mit großen Fenstern.

Your Contact:

Marieke Severiens (i-flow GmbH)
content@i-flow.io

Download the UNS architecture checklist for evaluating roles in UNS now.