How to enable multi threading on SRS
it's defaultly using only 2 threads which is not enough
I started SRS, it's defaultly using only 2 threads
How to enable multi threading on SRS
it's defaultly using only 2 threads which is not enough
I started SRS, it's defaultly using only 2 threads
Copyright © 2021 Jogjafile Inc.
First, SRS is a single thread media server, and high performance so you normally don't need multiple threading. Because multiple threading is not a silver bullet not even a copper one, it's the problem itself rather than a solution for problem.
Please just finger out why your SRS server performance is low, rather than switch to multiple threading model. If you just want to be as cool as multiple threading, please don't use SRS, because SRS dedicates for supporting business, not for cool.
Why NOT Multiple Threading?
I don't like multiple threading, because it really causes lots of problems:
If this doesn't convience you, please do some research about REDIS which is also single thread server.
Why Single Threading?
It's really simple: Because the bottleneck of media server is not the CPU, but the IO or network, please see State Threads for Internet Applications. This is why SRS uses coroutine of state-threads as network framework.
Say, if you want to support 1000 players, and each views a RTMP stream in 2Mbps, then the outgoing bandwidth is 2Gbps. Does your AWS/TencentCloud server support 2Gbps bandwidth? Or do you want to pay for 2Gbps fee, which is about $0.02 per second, $72 per hour, or $1728 per day?
If yes, SRS only needs about 30~50% CPU to deliver live stream to these clients, so you still don't need a multiple threading server.
Ultimately, it's really easy to monitor SRS, because if CPU >80%, the load is too high and you should do something to scale out your SRS server.
How to Scale-out SRS Server?
Actually, SRS allows you to scale out by live stream cluster, please read origin cluster and edge cluster, which allows you to build a CDN system.
If you deploy SRS cluster on a single node, then you get all your CPU busy, which is exactly the same or even better than multiple threading server.
This is actually the load balance issue for media server, please read Load Balancing Streaming Servers for detail.
And, we're developing a new cluster for WebRTC and SRT, please see #3138, and we'll release it at SRS 6.0.
Does SRS support Multiple Threading?
Yep! We really did lots of research about multiple threading, see #2188. To be honest, we found it's neither a neccessary nor good architecutre for media server.
However, we have refined the structure of SRS to support multiple threading, so there are two threads in SRS running, not really a single thread.
We might use multiple threading for transcoding and disk writing to solve the blocking issue of disk.
But, this doesn't mean we will change our structure to multiple threading model, there is still one thread for stream processing. Again, we want to build a media server for business not for cool.
What's the Limitation of SRS?
Although there are lots of benifits of single thread and cluster model of SRS, but there are still some limitations you should know.
SRS is design for tiny or medium media system, supports less than 10k connections, uses CDN or PaaS platform such as AWS or TencentCloud to extends the ability for huge concurrency, works with other client open source projects such as FFmpeg, OBS, VLC, WebRTC etc.
Conclusion
SRS is a single thread media server, but it doesn't mean single thread model is not able to scale out, instead we have cluster solution for live stream, WebRTC and SRT, which is much better than multiple threading model.
SRS has multiple threading support in SRS 5.0, so it's not the limitation of technology, but only because of the design choice and the goal and use scenario of SRS.