Similar to my other reply, will a single request be processed by more than one node in the cluster? From my limited knowledge of clusters and load balancing, it does not seem so. I am not dealing with high request volume, I am dealing with long response times for single requests. Here’s what I’m currently seeing
0:00 Refresh workspace triggered on client PC
0:01 Method server java process jumps to 25% CPU usage (full load for single core)
0:01 SQL Server process ramps up CPU usage to around 25%, then bounces up and down between 0% and 25% (full load for single core)
0:03 End of data transmission from client PC (total PC transmission time - 3 seconds)
<waiting>
0:37 SQL Server process drops back to 0% CPU usage (total SQL server processing time - 36 seconds)
0:40 Method server java process drops back to 0% CPU usage (total method server processing time - 39 seconds)
0:40 Beginning of data transmission from server back to client PC
0:40 Local PC web browser process jumps to 25% CPU usage (full load for single core)
0:42 End of data transmission from server to client PC (total server transmission time - 2 seconds)
0:48 PAGE DISPLAYS
0:49 Local PC web browser process returns to 0% CPU usage (total web browser display the data time - 9 seconds)
Basically, it takes Windchill 40 seconds to return the data requested and another 8 seconds (or so) for the web browser to format and display the information.
Tom U.