Reimplement UDP Buffer Tuning #22

Open
opened 2023-08-21 09:12:35 +02:00 by so-rose · 0 comments

We need to reimplement the following in an appropriate location:

    ####################
    # - Tuning - Traefik
    # -- Traefik serving QUIC can be bottlenecked by a too-low UDP buffer.
    # -- This increases both send & receive from ~200KB to 2.5MB.
    ####################
    - name: "Set net.core.rmem_max = 2500000"
      sysctl:
        state: "present"
        name: "net.core.rmem_max"
        value: "2500000"
        reload: "yes"
    
    - name: "Set net.core.wmem_max = 2500000"
      sysctl:
        state: "present"
        name: "net.core.rmem_max"
        value: "2500000"
        reload: "yes"
We need to reimplement the following in an appropriate location: ```yml #################### # - Tuning - Traefik # -- Traefik serving QUIC can be bottlenecked by a too-low UDP buffer. # -- This increases both send & receive from ~200KB to 2.5MB. #################### - name: "Set net.core.rmem_max = 2500000" sysctl: state: "present" name: "net.core.rmem_max" value: "2500000" reload: "yes" - name: "Set net.core.wmem_max = 2500000" sysctl: state: "present" name: "net.core.rmem_max" value: "2500000" reload: "yes" ```
so-rose added this to the v0.2.0 milestone 2023-08-21 09:12:35 +02:00
so-rose added the
bug
stack-mesh
labels 2023-08-21 09:12:35 +02:00
so-rose added this to the Refactor and Cleanup project 2023-08-21 09:12:36 +02:00
so-rose modified the project from Refactor and Cleanup to Minimal Complete Infrastructure 2023-08-21 12:34:31 +02:00
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: python-support/python-support-infra#22
There is no content yet.