我有以下终极线程120 VUs(见屏幕截图),它与以下2条消息一起失败:

与40线程相同的测试Sceanrio效果很好(截图)

问题在哪里?
播放列表URL:
发布于 2020-04-13 10:32:00
您测试的服务器很可能会超载,无法处理120个虚拟用户。
接下来您可以做的步骤是:
- Insufficient resources (CPU, RAM, slow Network or Disks), it can be checked using [JMeter PerfMon Plugin](https://www.blazemeter.com/blog/how-monitor-your-server-health-performance-during-jmeter-load-test/)
- Incorrect application and middleware configuration like default values which are good for development but not good for production, missing caching, etc. i.e. check [How To Setup Nginx For HLS Video Streaming On Centos 7](https://dev.to/samuyi/how-to-setup-nginx-for-hls-video-streaming-on-centos-7-3jb8)
- A bug in the application code like using [inefficient algorithms](https://en.wikipedia.org/wiki/Big_O_notation), it can be checked using [profiling tools](https://en.wikipedia.org/wiki/List_of_performance_analysis_tools)
https://stackoverflow.com/questions/61126531
复制相似问题