Internet speed prioritization in containers

How can I prioritize a container with regards to internet speed? Let’s assume I’ve got two podman (docker) containers and both upload stuff.

Reasoning

My upload bandwidth is limited. One container needs to reliably upload stuff and the other doesn’t. Thus, I want to prioritize one container over the over in order to deliver content in this container reliably.

Example

Syncthing can sync over a long time period but jellyfin can’t.

    • GravitySpoiledOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 months ago

      thx. If I read it correctly, you can set a bandwidth limit to a container, e.g. busybox. Can you prioritize as well?

      • Lem453@lemmy.ca
        link
        fedilink
        English
        arrow-up
        2
        ·
        3 months ago

        I don’t know. This docker allows you to use the standard Linux command tc on a docker container. Perhaps check to see if tc allows you to prioritize traffic like you. This isbgenerall called “quality of service”. That search term may help as well.

  • MangoPenguin@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    3 months ago

    This would be done in your routers QoS settings using the port to select traffic most likely, or if running the containers in macvlan networking mode, by IP.

  • sudneo@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    3 months ago

    Cgroups have the ability to limit TCP and total network bandwidth. I don’t know from the top of my mind whether this can be configured at runtime (I.e. via docker run), but you can specifcy at runtime the cgroup parent to use. This means you can pre-create the cgroup, set the limits and start the container with that parent cgroup.

    You can also run some hook script after launch that adds the PID to a cgroup every time the container is launched, or possibly use tc.

    I am not aware of the ability to only limit uplink bandwidth, but I have not researched this.

    • GravitySpoiledOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 months ago

      thx. docker-tc as suggested below does probably this. I’d like to prioritize, not only limiting.

      • sudneo@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        3 months ago

        Yeah ultimately every container has it’s own veth interface, so you can do shaping using tc on those.

        Edit: I had a look at docker-tc. It does what you want, BUT. Unless your use case is complex, I would really think twice about running a tool written in bash which has access to the docker socket (I.e. trivial node escape) and runs with NET_ADMIN capability.

        That’s a lot of power to do something you can also do with a few lines of code executed after you start the container. Again, provided that your use case is not complex.