Anyone experiencing performance/stability issues with latest HA/deconz?
Symptoms that I’m facing since ~2 weeks, so I’m not sure if this is related to HA/OS/deconz, as all updates come more-less the same time:
- especially for deconz group lights turnigng/off/toggling fails with some error message displayed at the bottom of web interface ‘Failed service… somethig’ (never captured whole message, appears randomly and quite fast). Associated light do not react to comand send from webUI.
- automations do not complete, e.g. motion sensor do not turn on/off the light (both on deconz). I guess this might be related to above. As far as I candiagnose sometimes it is on sensor side (not triggering for motion or lack of), or light (typical command send, HA thinks light reacted to command, but in reality light stae did not changed)
- delays in command exectution upt o ~20 seconds… motion in specific area happens, but light turn on after loooong delay. Never had a chance to diagnose if this is sensor event ot light command or long HA processing time.
In the log file I see lots of errors, I never encountered before:
2022-02-12 20:31:47 ERROR (MainThread) [homeassistant.core] Error executing service: <ServiceCall light.turn_off (c:ad79298f4149644096f5ef488b2bd5ec): entity_id=['light.library_1', 'light.library_2', 'light.library_3'], params=>
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 146, in request
return await self._request("put", path=field, json=data)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 141, in request
return await self._request(
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 167, in _request
_raise_on_error(response)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 264, in _raise_on_error
raise_error(data["error"])
File "/usr/local/lib/python3.9/site-packages/pydeconz/errors.py", line 59, in raise_error
raise cls("{} {}".format(error["address"], error["description"]))
pydeconz.errors.BridgeBusy: /lights/11/state/on Internal error, 951
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 146, in request
return await self._request("put", path=field, json=data)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 141, in request
return await self._request(
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 167, in _request
_raise_on_error(response)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 264, in _raise_on_error
raise_error(data["error"])
File "/usr/local/lib/python3.9/site-packages/pydeconz/errors.py", line 59, in raise_error
raise cls("{} {}".format(error["address"], error["description"]))
pydeconz.errors.BridgeBusy: /lights/11/state/on Internal error, 951
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 146, in request
return await self._request("put", path=field, json=data)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 141, in request
return await self._request(
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 167, in _request
_raise_on_error(response)
File "/usr/local/lib/python3.9/site-packages/pydeconz/gateway.py", line 264, in _raise_on_error
raise_error(data["error"])
File "/usr/local/lib/python3.9/site-packages/pydeconz/errors.py", line 59, in raise_error
raise cls("{} {}".format(error["address"], error["description"]))
pydeconz.errors.BridgeBusy: /lights/11/state/on Internal error, 951
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/core.py", line 1648, in catch_exceptions
await coro_or_task
File "/usr/src/homeassistant/homeassistant/core.py", line 1667, in _execute_service
await cast(Callable[[ServiceCall], Awaitable[None]], handler.job.target)(
File "/usr/src/homeassistant/homeassistant/helpers/entity_component.py", line 204, in handle_service
await self.hass.helpers.service.entity_service_call(
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 668, in entity_service_call
future.result() # pop exception if have
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 930, in async_request_call
await coro
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 705, in _handle_entity_call
await result
File "/usr/src/homeassistant/homeassistant/components/light/__init__.py", line 513, in async_handle_light_off_service
await light.async_turn_off(**filter_turn_off_params(light, params))
File "/usr/src/homeassistant/homeassistant/components/deconz/light.py", line 247, in async_turn_off
await self._device.set_state(**data)
File "/usr/local/lib/python3.9/site-packages/pydeconz/light.py", line 241, in set_state
return await self.request(field=f"{self.deconz_id}/state", data=data)
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 159, in request
return await self.request(field, data, tries)
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 159, in request
return await self.request(field, data, tries)
File "/usr/local/lib/python3.9/site-packages/pydeconz/api.py", line 162, in request
raise BridgeBusy
pydeconz.errors.BridgeBusy
seems to indicate that there is something wrong with the Conbee II stick performance? Any idea of what is ahppening here?