MQTT-Publish Average packet transfer time

Hi,

Currently I am using TICC3220SF along with AWS-FreeRTOS example demo project downloaded from AWS.

My Application is sending chunks of data to the AWS Cloud over MQTT.
Is there any way I can calculate MQTT-Publish data average transfer time? Please suggest the way to achieve the same.

Regards,
Suresh

Hi @Suresh,

Can you expand on the use case you have for this benchmark? Designing around a specific values could lead to some difficulties later.

Some examples dimensions that could introduce latency to such a measurement:

  1. Network conditions between the device and cloud.
  2. The distributed nature of the cloud.
  3. Accuracy of HW timing.
  4. Extreme outliers in the dataset. (Timeouts for example).

One possible approach to timing this connection, is to send an MQTT publish of QoS 1, and recording the amount of ticks between sending the publish and receiving the ACK. The ticks can then be converted to a unit such as milliseconds.

Hope this is helpful.

Thanks,

Carl