Why are initial connections always slower











up vote
2
down vote

favorite












I first noticed this when using Insomnia (HTTP clients) to test some of my API endpoints.



The first request I make to my API server (and others) is always 100ms+ but sequential requests are always super quick latency wise.



First Request Image



Second Request Image



How is this possible? I tried sending random data each request and this is still happening. I also recently heard of QUIC protocol by Google which is meant to reduce handshake request round trips from ~3 to 0 for common servers. This makes a lot of sense to what is happening but QUIC is not even deployed web-wide yet.










share|improve this question









New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    Is DNS involved?
    – Kamil Maciorowski
    22 hours ago










  • Haha. That's it then. But why does DNS take 100ms+??
    – Kirk122
    22 hours ago






  • 2




    It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
    – Seth
    21 hours ago










  • QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
    – davidgo
    20 hours ago










  • It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
    – Appleoddity
    16 hours ago















up vote
2
down vote

favorite












I first noticed this when using Insomnia (HTTP clients) to test some of my API endpoints.



The first request I make to my API server (and others) is always 100ms+ but sequential requests are always super quick latency wise.



First Request Image



Second Request Image



How is this possible? I tried sending random data each request and this is still happening. I also recently heard of QUIC protocol by Google which is meant to reduce handshake request round trips from ~3 to 0 for common servers. This makes a lot of sense to what is happening but QUIC is not even deployed web-wide yet.










share|improve this question









New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 2




    Is DNS involved?
    – Kamil Maciorowski
    22 hours ago










  • Haha. That's it then. But why does DNS take 100ms+??
    – Kirk122
    22 hours ago






  • 2




    It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
    – Seth
    21 hours ago










  • QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
    – davidgo
    20 hours ago










  • It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
    – Appleoddity
    16 hours ago













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I first noticed this when using Insomnia (HTTP clients) to test some of my API endpoints.



The first request I make to my API server (and others) is always 100ms+ but sequential requests are always super quick latency wise.



First Request Image



Second Request Image



How is this possible? I tried sending random data each request and this is still happening. I also recently heard of QUIC protocol by Google which is meant to reduce handshake request round trips from ~3 to 0 for common servers. This makes a lot of sense to what is happening but QUIC is not even deployed web-wide yet.










share|improve this question









New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











I first noticed this when using Insomnia (HTTP clients) to test some of my API endpoints.



The first request I make to my API server (and others) is always 100ms+ but sequential requests are always super quick latency wise.



First Request Image



Second Request Image



How is this possible? I tried sending random data each request and this is still happening. I also recently heard of QUIC protocol by Google which is meant to reduce handshake request round trips from ~3 to 0 for common servers. This makes a lot of sense to what is happening but QUIC is not even deployed web-wide yet.







http tcp web udp






share|improve this question









New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 21 hours ago









Tomasz Jakub Rup

510313




510313






New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 22 hours ago









Kirk122

133




133




New contributor




Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Kirk122 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 2




    Is DNS involved?
    – Kamil Maciorowski
    22 hours ago










  • Haha. That's it then. But why does DNS take 100ms+??
    – Kirk122
    22 hours ago






  • 2




    It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
    – Seth
    21 hours ago










  • QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
    – davidgo
    20 hours ago










  • It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
    – Appleoddity
    16 hours ago














  • 2




    Is DNS involved?
    – Kamil Maciorowski
    22 hours ago










  • Haha. That's it then. But why does DNS take 100ms+??
    – Kirk122
    22 hours ago






  • 2




    It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
    – Seth
    21 hours ago










  • QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
    – davidgo
    20 hours ago










  • It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
    – Appleoddity
    16 hours ago








2




2




Is DNS involved?
– Kamil Maciorowski
22 hours ago




Is DNS involved?
– Kamil Maciorowski
22 hours ago












Haha. That's it then. But why does DNS take 100ms+??
– Kirk122
22 hours ago




Haha. That's it then. But why does DNS take 100ms+??
– Kirk122
22 hours ago




2




2




It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
– Seth
21 hours ago




It really depends on your setup. But one possible explanation (taking DNS into account) would be that your client doesn't have a cached entry for that server. So before being able to make a request it would need to do a DNS lookup in order to know which server to connect to. The server and your client may also support keep alive so maybe the connection isn't closed between requests.
– Seth
21 hours ago












QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
– davidgo
20 hours ago




QUIC can reduce latencies, but not to zero. It works by creating it's own mechanism which behaves somewhat similar to tcp by using udp, and overcoming some of the limits in the tcp protocol. It's not magic though.
– davidgo
20 hours ago












It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
– Appleoddity
16 hours ago




It might also be session management on the remote endpoint. The first time you connect it’s allocating resources to the connection and starting up threads. After that you’re just reusing the same resources until they timeout and are freed.
– Appleoddity
16 hours ago










1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










As other mentioned in the comments to your initial post that it could be DNS, which is a very reasonable idea as to the cause of the delay.



However, there is no way for us to know the actual answer to your question. We dont know what is going on with your setup, nor can we, without access.



There is a tool you can use to diagnose the problem. Fiddler is an excellent tool, in which I can highly recommend. It can help diagnose web based problems. I suggest you give it a shot.






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });






    Kirk122 is a new contributor. Be nice, and check out our Code of Conduct.










     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1374943%2fwhy-are-initial-connections-always-slower%23new-answer', 'question_page');
    }
    );

    Post as a guest
































    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote



    accepted










    As other mentioned in the comments to your initial post that it could be DNS, which is a very reasonable idea as to the cause of the delay.



    However, there is no way for us to know the actual answer to your question. We dont know what is going on with your setup, nor can we, without access.



    There is a tool you can use to diagnose the problem. Fiddler is an excellent tool, in which I can highly recommend. It can help diagnose web based problems. I suggest you give it a shot.






    share|improve this answer

























      up vote
      0
      down vote



      accepted










      As other mentioned in the comments to your initial post that it could be DNS, which is a very reasonable idea as to the cause of the delay.



      However, there is no way for us to know the actual answer to your question. We dont know what is going on with your setup, nor can we, without access.



      There is a tool you can use to diagnose the problem. Fiddler is an excellent tool, in which I can highly recommend. It can help diagnose web based problems. I suggest you give it a shot.






      share|improve this answer























        up vote
        0
        down vote



        accepted







        up vote
        0
        down vote



        accepted






        As other mentioned in the comments to your initial post that it could be DNS, which is a very reasonable idea as to the cause of the delay.



        However, there is no way for us to know the actual answer to your question. We dont know what is going on with your setup, nor can we, without access.



        There is a tool you can use to diagnose the problem. Fiddler is an excellent tool, in which I can highly recommend. It can help diagnose web based problems. I suggest you give it a shot.






        share|improve this answer












        As other mentioned in the comments to your initial post that it could be DNS, which is a very reasonable idea as to the cause of the delay.



        However, there is no way for us to know the actual answer to your question. We dont know what is going on with your setup, nor can we, without access.



        There is a tool you can use to diagnose the problem. Fiddler is an excellent tool, in which I can highly recommend. It can help diagnose web based problems. I suggest you give it a shot.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 21 hours ago









        Keltari

        48.6k17112160




        48.6k17112160






















            Kirk122 is a new contributor. Be nice, and check out our Code of Conduct.










             

            draft saved


            draft discarded


















            Kirk122 is a new contributor. Be nice, and check out our Code of Conduct.













            Kirk122 is a new contributor. Be nice, and check out our Code of Conduct.












            Kirk122 is a new contributor. Be nice, and check out our Code of Conduct.















             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1374943%2fwhy-are-initial-connections-always-slower%23new-answer', 'question_page');
            }
            );

            Post as a guest




















































































            Popular posts from this blog

            Список кардиналов, возведённых папой римским Каликстом III

            Deduzione

            Mysql.sock missing - “Can't connect to local MySQL server through socket”