Where's the bottleneck?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Where's the bottleneck?
The slowness of our program may be due to network bogging down or it may be due to inefficient coding (which I can address). How can I tell?
Thanks
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Without any additional details been provided, I would suggest generic approach:
-- Use Performance profiler with Routine level areas (or Simple profiler) and locate routine(s) that perform poorly;
-- Then setup Line level area for the Performance profiler for top 5 or top 10 most slow routines and profile them on the line level. Check what line(s) of code perform poorly. If they correspond to the network communication functions, then the problem is either with the network or backend server applications. Otherwise, most probably, the code of your application requires review;
-- You may consider to either monitor backend server(s) performance using counters or/and use specialized tools on the server (e.g. Query Analyzer for the database server) and try to correlate their data with the data provided by AQtime. If, for example, you will see long query execution reported by the database tool at the moment when network-related activity is performed by your application as per AQtime, then, most probably, the problem is not with the network, but with some heavy/non-optimized data query.
P.S. https://support.smartbear.com/screencasts/aqtime/performance-profiling/ video (from the https://support.smartbear.com/screencasts/aqtime/ page) might help as well...
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm thinking that if execution is fast for one user then the problem is with the server and not my program. By the way I am using DOS era 3GL file access.
