Hi All,
I have bare-metal machine which i am trying to run Aerospike server on with following specs.
- Intel Xeon X5650 6 Core CPU with Hyper-threading on, totaling in 12 CPUs.
- 8 GB DDR3 1333 RAM
- 250 GB SSD
- Ubuntu 15.04
- Nodejs client libs
- Data on SSD
While running a benchmark program included in examples (sudo node main -T 10) ,I am getting these results.
SUMMARY
Configuration
operations 100
iterations undefined
processes **12**
time 10.00 seconds
Transactions
------ mean min max
duration 2.08 ms 0.51 ms 26.22 ms
tps/process **47,981** 3,813 195,637
**Durations**
<= 1 > 1 > 2 > 4 > 8 > 16 > 32
70.4% 14.1% 9.0% 5.3% 1.1% 0.0% 0.0%
Status Codes
0 9
100.0% 0.0%
Here it shows that the Mean TPS is 47,981 per process and by default there were 12 child process, My questions as follows,
- Can this result be taken as my system handling 47,981 X 12 = 575,772 TPS?
- what is meant by operations here in Configuration list?
- Is TPS = IOPS in this scenario?
This is important for me to know the answers before doing actual deployment of our severs. Can anyone please share some thoughts on this topic.
Thanks