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 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则