|
这两天在做一个考勤系统的性能测试工作,编写了脚本,手工关联、参数化后,replay时没有任何问题,controller中用1个用户迭代执行20次也没有问题,但是如果增加用户数量,比如300、500等,每次执行结果都不一样,不知道怎么回事,同样的脚本、同样的场景设置,结果怎么会有各种各样的呢?
另外,对于手工关联的数据,replay和单用户运行时都可以取到合适的值,但是多用户负载测试时,就会报很多参数未找到的错误,这是为什么呢?
Action.c(39): Error -26377: No match found for the requested parameter "agentCode4". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size
注:该系统支持单用户重复登陆,由于现有用户数量和设置麻烦的限制,在多用户负载测试的时候,实际用户名只有5个。 |
|