hi
i used feature server/map servers in web application, recently the application got slowed because of gis services
is there anyway to check load testing like using 100 people at a a time and check the cpu/memory at server side for GIS
can anyone suggest a method/scripts to check the performance of gis services
Thanks
Solved! Go to Solution.
JMeter is a good, free option to look into. You can simulate load against any type of service as long as you know how to build the request to them.
Another option is System Test which is through Esri's Professional Services team.
Finally, you can create your own performance test using Python and the threading library. You can set up your functions to make export map requests and then start up multiple threads that run the functions. I wrote something like this a while ago, I think it should still work. The other options above may be better "Enterprise" solutions, though.
JMeter is a good, free option to look into. You can simulate load against any type of service as long as you know how to build the request to them.
Another option is System Test which is through Esri's Professional Services team.
Finally, you can create your own performance test using Python and the threading library. You can set up your functions to make export map requests and then start up multiple threads that run the functions. I wrote something like this a while ago, I think it should still work. The other options above may be better "Enterprise" solutions, though.