I'd like to ensure that my packets are received in-order by IoTCore. As QoS2 is not available it looks like the only way to do that in-client is to limit the number of in flight messages to 1. This is described well in answers to other questions for different clients:
However, although I can see how to set this in Paho I cannot see how to set it using the awssdk2 for Python.
- https://awslabs.github.io/aws-crt-python/api/mqtt.html#awscrt.mqtt.Connection
- https://pypi.org/project/awsiotsdk/
So my questions are:
- What is the in-flight limit set for AWS IoTCore MQTT?
- Is it possible to change that limit?
All suggestions appreciated.
Ed