I use IoT SDK in JAVA. When my application starts, it connects to IoT core of AWS:
iotClient = new AWSIotMqttClient(. . .);
iotClient.connect();
But after application starting I see in my log a very strange behavior and it happens every 10 minutes:
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AwsIotConnection.onConnectionSuccess Connection successfully established
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AbstractAwsIotClient.onConnectionSuccess Client connection active: <client ID>
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AwsIotConnection.onConnectionFailure Connection temporarily lost
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AbstractAwsIotClient.onConnectionFailure Client connection lost: <client ID>
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AwsIotConnection$1.run Connection is being retried
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AwsIotConnection.onConnectionSuccess Connection successfully established
[pool-8-thread-1] com.amazonaws.services.iot.client.core.AbstractAwsIotClient.onConnectionSuccess Client connection active: <client ID>
How can I disable reconnection every 10 minutes? I use IoT Rules on CONNECTED/DISCONNECTED topic, so reconnection every 10 minutes fires this rule every 10 minutes...
I don't know why, but it is my solution: