Changes between Version 1 and Version 2 of Ticket #2528, comment 2


Ignore:
Timestamp:
08/10/23 09:45:06 (9 months ago)
Author:
Roman Arutyunyan

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2528, comment 2

    v1 v2  
    1 Currently QUIC does not handle reloads well. Existing connections may fail while two sets of workers are running. This happens because while reloading, a UDP socket is shared between two workers - old a new.  Incoming packets will typically arrive in the new worker, while old connections will die out and their packets will be rejected.
     1Currently QUIC does not handle reloads well. Existing connections may fail while two sets of workers are running. This happens because while reloading, a UDP socket is shared between two workers - old a new.  Incoming packets may arrive in the wrong worker. As a result, connections may close and their packets may be rejected.
    22
    33I sent out a patchset a while ago which should fix the issue for Linux: