Why disaster happens at the edges: An introduction to queue theory
1–10 of 62 posts
Re: Why disaster happens at the edges: An introduction to queue theory
#2Doesn't TCP typically use sliding window flow control? I'm not sure what "code" is referring to in this context.
Re: Why disaster happens at the edges: An introduction to queue theory
#3> The TCP protocol, for instance, generates backpressure with code 503 Doesn't TCP typically use sliding window flow control? I'm not sure what "code" is referring to in this context.
Re: Why disaster happens at the edges: An introduction to queue theory
#4> The TCP protocol, for instance, generates backpressure with code 503 Doesn't TCP typically use sliding window flow control? I'm not sure what "code" is referring to in this context.
But yes, TCP uses windows for back-pressure, but that isn't really useful for application level backpressure as the OS controls the queues sizes, so pretty much most systems have their own backpressure on top.
Re: Why disaster happens at the edges: An introduction to queue theory
#5Re: Why disaster happens at the edges: An introduction to queue theory
#6Re: Why disaster happens at the edges: An introduction to queue theory
#7https://github.com/joelparkerhenderson/queueing-theory
Queueing theory is the mathematical study of waiting lines, or queues. We use queueing theory in our software development, for purposes such as project management kanban boards, inter-process communication message queues, and devops continuous deployment pipelines.
Re: Why disaster happens at the edges: An introduction to queue theory
#8> The TCP protocol, for instance, generates backpressure with code 503 Doesn't TCP typically use sliding window flow control? I'm not sure what "code" is referring to in this context.
I think this might be an error in the text, HTTP status code 503 can be used for backpressure, which I think is what is being referred too But yes, TCP uses windows for back-pressure, but that isn't really useful for application level backpressure as the OS controls the queues sizes, so pretty much most systems have their own backpressure on top.