Hi, The tps calculation formula is (1000/avg)*threadcount for 'default calculation' Can you explain this formula? I don't quite understand the 1000/avg part thanks Ali
the TPS is transactions per second and since the average is in ms, we need to invert to get the TPS; ie 1000ms / 500ms (if the average was 500 ms) would give a TPS of 2 (when running with one thread). If running with more than one thread, this number is multiplied by the number of threads since they are running simultaneously.