Difference between revisions of "M4 System Architecture"
Line 11: | Line 11: | ||
* CPS: 100 | * CPS: 100 | ||
* Concurrent Calls with Media Proxy (media goes over the system): 500 | * Concurrent Calls with Media Proxy (media goes over the system): 500 | ||
* Concurrent Calls without Media Proxy (media goes directly between originator and terminator): | * Concurrent Calls without Media Proxy (media goes directly between originator and terminator): 1000 | ||
NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS. | NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS. | ||
<br><br> | <br><br> | ||
= (B) 2 server solution = | = (B) 2 server solution = | ||
Signaling/Media separated from Processing(Core)/Management(GUI)/Database | Signaling/Media separated from Processing(Core)/Management(GUI)/Database |
Revision as of 17:01, 22 June 2021
Each rectangle represents 1 real hardware server, not a virtual machine (VM).
If you want to design the system with VMs, take note of how many real servers are used. You can have many VMs but if they are all on the same hardware server - there will not be enough processing power to handle the load. All elements can be on the VMs, but the results will vary case by case.
(A) Everything in one server
- CPS: 100
- Concurrent Calls with Media Proxy (media goes over the system): 500
- Concurrent Calls without Media Proxy (media goes directly between originator and terminator): 1000
NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS.
(B) 2 server solution
Signaling/Media separated from Processing(Core)/Management(GUI)/Database
- CPS: 300
- Concurrent Calls with Media Proxy: 2500
- Concurrent Calls without Media Proxy: 4000
NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS.
(B-R) Redundant 2 server solution
CPS/Concurrent Calls same as in the system without redundancy. If GUI uses slave DB, then CPS/CC can be higher compared to the system without redundancy.
(B2) 3 server solution
Signaling/Media + Processing(Core)/Database + Management(GUI)
- CPS: 500
- Concurrent Calls with Media Proxy: 3000
- Concurrent Calls without Media Proxy: 5000
NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS.
(C) N+3 server solution
Where N is Media(RTPEngine) servers. Each can handle media streams for ~4000 concurrent calls.
- CPS: 1000
- Concurrent Calls with Media Proxy: N x 4000
- Concurrent Calls without Media Proxy: 10000
NOTE: Heavy GUI usage (report generation/analysis, etc) will reduce CC/CPS.
(C-R) N+3 solution with redundancy
CPS/Concurrent Calls same as in the system without redundancy. If GUI uses slave DB, then CPS/CC can be higher compared to the system without redundancy.