0

When CMDH processing is in use to retry communications between CSEs, and that communication link uses CoAP (which defines its own retry logic), which retry policy should be used: CMDH or CoAP?

Andreas Kraft
  • 3,754
  • 1
  • 30
  • 39
Spongman
  • 9,665
  • 8
  • 39
  • 58

1 Answers1

0

CMDH processing - level retries happens on a higher layer than the transport protocol's retransmission. This is the same as with any transport protocol, e.g. with TCP/IP retransmissions. Those can actually be quite dynamic, depending also on various external factors (network defaults, congestion, etc).

CMDH retries are application-level settings and should be set to a higher value, but this depends on the use case, e.g. when does it actually still make sense to process an old event.

Andreas Kraft
  • 3,754
  • 1
  • 30
  • 39