Skip to content

Commit b39eb52

Browse files
authored
Address review feedback
1 parent d1767c0 commit b39eb52

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

articles/iot-operations/troubleshoot/known-issues.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,22 @@ This article lists the known issues for Azure IoT Operations.
3131

3232
## MQTT broker
3333

34-
- When the MQTT broker is set up with a 'Medium' or higher memory profile and multiple backend workers, memory usage can sometimes become unexpectedly high due to internal certificate rotation retries. This results in errors like 'failed to connect trace upload task to diagnostics service endpoint' in the logs. To fix, restart each broker pod one by one (including the diagnostic service, probe, and authentication service), making sure each backend recovers before moving on. Alternatively, re-deploy Azure IoT Operations with a 'Low' memory profile and a single worker backend. The issue is expected to be address in the next patch update.
34+
- Sometimes, the MQTT broker's memory usage can sometimes become unexpectedly high due to internal certificate rotation retries. This results in errors like 'failed to connect trace upload task to diagnostics service endpoint' in the logs. The issue is expected to be address in the next patch update. In the meantime, as a workaround, restart each broker pod one by one (including the diagnostic service, probe, and authentication service), making sure each backend recovers before moving on. Alternatively, [re-deploy Azure IoT Operations with higher internal certificate duration](../manage-mqtt-broker/howto-encrypt-internal-traffic.md#internal-certificates), `1500h` or more.
35+
36+
```json
37+
{
38+
"advanced": {
39+
"internalCerts": {
40+
"duration": "1500h",
41+
"renewBefore": "1h",
42+
"privateKey": {
43+
"algorithm": "Ec256",
44+
"rotationPolicy": "Always"
45+
}
46+
}
47+
}
48+
}
49+
```
3550

3651
- MQTT broker resources created in your cluster using Kubernetes aren't visible Azure portal. This is expected because [managing Azure IoT Operations components using Kubernetes is in preview](../deploy-iot-ops/howto-manage-update-uninstall.md#preview-manage-components-using-kubernetes-deployment-manifests), and synchronizing resources from the edge to the cloud isn't currently supported.
3752

0 commit comments

Comments
 (0)