In command mode , the events received by the clients is out of order. I assume the LS behavior is, the first client who invokes snapshot call get the ordered events and consecutive clients fetch data from kernel get the events dispatched in random order. Do you have any suggestions for us to retain the ordered delivery.?

Example Scenario Client A invokes first subscription:

  • Adapter Snapshot retrieval send smart Update in the order
Item1, item2, item3
  • Client A receives
Item1, item2, item3 ( subscription initiator receives in order delivery )
  • Client B receives
Item2, item1, item3
  • Client C receives
Item2, item3, item1 or Item2, item1, item3

Are we missing something in configuration level to achieve this?

Thanks
Rajesh