Skip to content

Latest commit

 

History

History
88 lines (55 loc) · 9.04 KB

device_connection_and_reliability_readme.md

File metadata and controls

88 lines (55 loc) · 9.04 KB

Azure IoT Device Client .NET SDK

Device connection and messaging reliability

Overview

In this document you will find information about:

  • The connection authentication and renewal methods.
  • The reconnection logic and retry policies.
  • The timeout controls.

Connection authentication

Authentication can be done using one of the following:

Samples:

When using SAS tokens, authentication can be done by:

  • Providing the shared access key of the IoT hub and letting the SDK create the SAS tokens by using one of the CreateFromConnectionString methods on the DeviceClient.

    If you choose this option, the SDK will create the SAS tokens and renew them before expiry. The default values for time-to-live and renewal buffer can be changed using the ClientOptions properties.

    • SasTokenTimeToLive: The suggested time-to-live value for tokens generated for SAS authenticated clients. Default value is 60 minutes.
    • SasTokenRenewalBuffer: The time buffer before expiry when the token should be renewed, expressed as a percentage of the time-to-live. Acceptable values lie between 0 and 100. Default value is 15%.

    Note:

    1. If the shared access policy name is not specified in the connection string, the audience for the token generation will be set by default to - <iotHubHostName>/devices/<deviceId>
    2. When authenticating a device using shared access key over AMQP, in-connection token refresh is supported.
    3. When authenticating a device using shared access key over MQTT, the connection will be briefly closed as part of the token refresh process.
  • Providing only the shared access signature

    If you only provide the shared access signature, there will never be any renewal handled by the SDK.

  • Providing your own SAS token using DeviceAuthenticationWithTokenRefresh

    If you choose to use DeviceAuthenticationWithTokenRefresh to provide your own implementation of token generation, you can provide the time-to-live and time buffer before expiry through the DeviceAuthenticationWithTokenRefresh constructor. The ClientOptions only apply to other IAunthenticationMethod implementations.

When using x509 certificates, DeviceAuthenticationWithX509Certificate can be used. The client authentication will be valid until the certificate is valid. Any renewal will have to be done manually and the client needs to be recreated.

When using TPM based authentication, the DeviceAuthenticationWithTpm can be used. TPM based authentication will eventually generate a SAS token but is more secure than using the shared access key of the IoT hub to generate the token.

Authentication methods implemented by the SDK

The different IAuthenticationMethod implementations provided by the SDK are:

Connection retry logic

For both AMQP and MQTT, the SDK will try to reconnect anytime there is any network related disruption. The default retry policy does not have a time limit and will follow exponential back-off.

Note: The default retry policy has support for jitter, which ensures that if you have N devices that disconnected at the same time, all of them won't start reconnecting with the same delay.

For more details on the default retry policy and how to override it, see retry policy documentation.

HTTP is a stateless protocol and will work whenever there is network connectivity.

Timeout controls

There are different timeout values that can be configured for the DeviceClient/ModuleClient based on the protocol. These values are configuarable through the following transport settings that are passed while creating the client. Once the client is created, the settings cannot be changed. The client will need to be recreated with new settings to make changes.

AMQP timeout settings:

  • IdleTimeout - The interval that the client establishes with the service, for sending keep-alive pings. The default value is 2 minutes.
  • OperationTimeout - The time to wait for any operation to complete. The default is 1 minute.
  • OpenTimeout - This value is not used (TODO: Confirm and update)

MQTT timeout settings:

  • ConnectArrivalTimeout - The time to wait for receiving an acknowledgment for a CONNECT packet. The default is 1 minute.
  • KeepAliveInSeconds - The interval, in seconds, that the client establishes with the service, for sending keep-alive pings. The default value is 5 minutes. The client will send a ping request 4 times per keep-alive duration set. It will wait for 30 seconds for the ping response, else mark the connection as disconnected.
  • DeviceReceiveAckTimeout - The time a device will wait for an acknowledgment from service. The default is 5 minutes.