Project

General

Profile

Actions

Feature #5214

open

osmo-mgw multithreading

Added by Hoernchen over 2 years ago. Updated over 2 years ago.

Status:
In Progress
Priority:
Normal
Assignee:
Category:
-
Target version:
-
Start date:
08/17/2021
Due date:
% Done:

50%

Spec Reference:

Description

The mgw needs to scale, so it needs to be reworked, and since syscalls are getting more expensive every year due to kernel mitigations handling the virtual trunk rtp sockets sounds like a job for io_uring.

Actions #1

Updated by laforge over 2 years ago

  • Subject changed from general multithreading ticket to osmo-mgw multithreading

this deserves a bit better description:

  • osmo-mgw traditionally only operates within one thread, which doesn't scale very far given it's extensive use of small packets and hence high syscall load
  • we now are introducing the support for operating multiple MGWs from a BSC or MSC to distribute the load across different MGW instances. This is primarily useful for scaling out to multiple physical machines or VMs with separate IP addresses, etc.
  • in addition to that, and unrelated to the above, we want to introduce real multi-threading support to osmo-mgw, i.e. handle different endpoints in different threads, so that the RTP/RTCP sockets of one endpoint are served within the same thread, but different endpoints can be served by different threads

The use of io_uring is a separate, independent option, which doesn't really have a strict relation to multi-threading. io_uring enables even a single-threaded program to handle alot of socket I/O syscalls without many [or even any!] syscalls.

Actions

Also available in: Atom PDF

Add picture from clipboard (Maximum size: 48.8 MB)