Get state of connection with AWS IoT in Greengrass component.

0

How can I get status of connection with the cloud in a custom Greengrass component?

已提問 2 年前檢視次數 394 次
3 個答案
1

another option is to send a message to a ping/request topic to iot-core and have a lambda send a reply to the originator on a ping/response topic. i know..not a great solution, but at least you know within a configurable time that you've lost connection

clogwog
已回答 2 年前
  • I did similar solution. My component posts to a ping topic and subscribe to it at the same time. I the component doesn't get its messages I know that we lose the internet connection.

1

Hi Oleksandr,

There is no official way to get the MQTT connection state in a component, though if you visit us on Github we'd be more than happy to have a technical discussion with you on that.

One configuration knob that may be interesting to you is the keepQos0WhenOffline configuration option which can instruct Nucleus to drop QoS 0 MQTT messages if it is disconnected. While this doesn't directly address your question, there are a number of scenarios where it doesn't make sense to buffer messages to be sent at a later time.

https://docs.aws.amazon.com/greengrass/v2/developerguide/greengrass-nucleus-component.html

Thanks, -joe

AWS
已回答 2 年前
0

Thanks for answering
The keepQos0WhenOffline is a good parameter and can be used in some cases. In my case, I need to indicate status of the connection on the led indicator.
So I think it will be easier to check only the internet connection.

已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南