Can anyone please tell me the difference the following metrics in Riak: 1. node_gets vs vnode_gets 2. node_puts vs vnode_puts
As per the documentation, node_gets is the number of gets co-ordinated by a node in the Riak cluster in the last 60 seconds, whereas vnode_gets is the number of gets co-ordinated by vnodes on a particular node. Since vnodes are responsible for managing the partitions and data in a Riak cluster, I am guessing that the node_gets should be a subset of vnode_gets.
If I have to figure out the number of get/put on the cluster by different clients, which among node_gets/vnode_gets and node_puts/vnode_puts should I use?