@Override
 public void readFrom(StreamInput in) throws IOException {
   super.readFrom(in);
   nodes = new NodeStats[in.readVInt()];
   for (int i = 0; i < nodes.length; i++) {
     nodes[i] = NodeStats.readNodeStats(in);
   }
 }