Forum Discussion

JL's avatar
JL
Occasional Contributor
8 years ago
Solved

What causes relative start time to go up?

I have a script/device that simply hits 1 web page. The relative response time has gone up significantly starting on Aug 4th. We did push code changes on that day and I am trying to figure out what is the cause, specifically, of the increased DL times. I noticed the relative start times of the assets has increased significantly. What causes relative start times to increase for assets of a page?

Thanks in advance.

 

Jo

  • Relative Start time occurs within the browser and are typically caused because the browser is waiting for another call to complete before starting the next object download. For example a picture on the page cannot begin downloading until the browser downloads the main HTML then parses and builds the DOM from that content. The relative start time of the first object will be delayed by the amount of time that takes to complete the initial download.

     

    Also note that the browser will only allow a specific number of simultaneous connections to the server by default, so Relative Start time maybe be delayed waiting for available connections within the browser. In some cases delays may also be caused because dependencies on the page cannot begin downloading until prior objects loaded on the page have completed.

     

    Looking at the Total Response Time of calls that occur ahead of the calls in question will often give you some enlightenment into this as well. A long relative start time can usually be attributed to a call ahead of the object in question that has a very long total response time. This becomes clearer visibly when viewing a waterfall report (HTTP Step Report). Calls that precede the object in question will typically have longer RTs that can be correlated to the long relative start times of calls that occur after.

2 Replies

  • Relative Start time occurs within the browser and are typically caused because the browser is waiting for another call to complete before starting the next object download. For example a picture on the page cannot begin downloading until the browser downloads the main HTML then parses and builds the DOM from that content. The relative start time of the first object will be delayed by the amount of time that takes to complete the initial download.

     

    Also note that the browser will only allow a specific number of simultaneous connections to the server by default, so Relative Start time maybe be delayed waiting for available connections within the browser. In some cases delays may also be caused because dependencies on the page cannot begin downloading until prior objects loaded on the page have completed.

     

    Looking at the Total Response Time of calls that occur ahead of the calls in question will often give you some enlightenment into this as well. A long relative start time can usually be attributed to a call ahead of the object in question that has a very long total response time. This becomes clearer visibly when viewing a waterfall report (HTTP Step Report). Calls that precede the object in question will typically have longer RTs that can be correlated to the long relative start times of calls that occur after.

    • JL's avatar
      JL
      Occasional Contributor

      Thanks for the response SJeffries. I appreciate it. 

       

      Joe