Little’s Law, the Universal Scalability Law, and the Usl4j Java library
1–5 of 5 posts
Re: Little’s Law, the Universal Scalability Law, and the Usl4j Java library
#2I'm going to have to brush up on my IE one of these days to try to figure out if there are some useful insights to potentially be gleaned from models that account for server-level concurrency more directly, along the lines of https://en.wikipedia.org/wiki/M/M/c_queue
Re: Little’s Law, the Universal Scalability Law, and the Usl4j Java library
#3Re: Little’s Law, the Universal Scalability Law, and the Usl4j Java library
#4Here's what I found last time I did it: https://github.com/brendangregg/PerfModels/blob/master/scale...
ie, I'm splitting the dataset into "model input" and "extra measurements". USL was not really working.
Re: Little’s Law, the Universal Scalability Law, and the Usl4j Java library
#5Instead of giving the entire dataset to the model (which in this case already identifies a performance limit visually), give a partial set and then see if these algorithms can predict the remaining known values. That should be the real test of whether prediction works. Here's what I found last time I did it: https://github.com/brendangregg/PerfModels/blob/master/scale... ie, I'm splitting the dataset into "model inpu…
Could you test it again
1) by adding 11th data point, 2) without 10th data point, 3) with 10th data point corrected?