In Forms, when requesting to download a previously uploaded file, there is a roughly 25 second wait time between when the user clicks to download the file and the download starts.
I assume this is how long it takes to prepare the document from BLOB data and I am trying to determine where to add higher performance processors to speed up the process.
However, the job is not processed on the web server OR the SQL server. Let me explain.
During the 25 second period, I checked the web server; nothing is accessing the CPU over 1%.
I profiled the SQL server; no RPCs or Batch transactions that take over 4 milliseconds.
Querying all BLOB data returns in less than 1 second, so there is no wait on getting the data from storage.
Where in the world is this file being generated if not in SQL or on the Web Server?