[erlang-questions] gen_sctp: What delays SACK?

Jesper Louis Andersen jesper.louis.andersen@REDACTED
Tue Nov 13 15:51:16 CET 2018


Hi,

Use tcpdump(1) on the flow and look for who is adding the latency. Usual
rule of protocol debugging is to start at the lowest level and verify each
level as you go up. Because then you have an audit trail of the events that
happened which can inform you at a higher level.


On Tue, Nov 13, 2018 at 10:15 AM Oliver Korpilla <Oliver.Korpilla@REDACTED>
wrote:

> Hello.
>
> We're using an elixir application as a sort of protocol tester. It
> communicated with the system-under-test over SCTP as a transport.
>
> We're observing delay and unsent messages and due to the nature of the
> SCTP protocol we're not sure which side causes the issue.
>
> The BEAM side has the NO_DELAY option set and pumps a burst of messages
> but then waits for responses (so it will not burst indefinitely, it burst
> once and then respond).
>
> The C++ application has the DELAYED_SACK option set - we tried with both
> sack_freq 1 (which supposedly disables the algorithm) and higher (the
> default in our system).
>
> (We also increased the receive window on both sides to ensure that senders
> would not block.)
>
> But we're stumped. The C++ side is not responding at some point. When we
> did an actual target test once and we saw SCTP messages sent from
> system-under-test just stop when analyzing the tcpdump of the interfaces -
> C++ application has not emitted something on the wire and respectively
> nothing is received.
>
>
> Our latest area of inquiry is to find out if maybe the elixir part is
> simply not getting scheduled - but can this impact for example SACK
> latency? Who acknowledges a message - the SCTP stack by itself or the
> application? And will the protocol block the sender until SACK?
>
> I'm sorry for asking such vague questions but SCTP know-how is spread thin
> in our outfit and we're not the experts...
>
> Thank you,
> Oliver
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://erlang.org/mailman/listinfo/erlang-questions
>


-- 
J.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20181113/4d6bc18d/attachment.htm>


More information about the erlang-questions mailing list