We want to experiment with measurement of query load.
- Query rate: average number of queries per time slice of 10 seconds
- Standard deviation: std of the number of queries per 10 seconds, across the whole set
- Max: max number of queries per 10 seconds, across the whole set.
The first step is to upgrade the capture program with a few new data points:
- Number of 10 second slices in segment
- Sum of queries received over all slices
- Sum of squares of number of queries received over all slices
- maximum number of queries per slice
We will also update the summary program, so the max is computed across all maxes, instead of just doing a summation.
Then we will update M3 to display the average, std and max -- i.e., the most simple part. We can then play with the data set and try find variations per locale, day, etc.
We want to experiment with measurement of query load.
The first step is to upgrade the capture program with a few new data points:
We will also update the summary program, so the max is computed across all maxes, instead of just doing a summation.
Then we will update M3 to display the average, std and max -- i.e., the most simple part. We can then play with the data set and try find variations per locale, day, etc.