@Override
 public void writeTo(StreamOutput out) throws IOException {
   shardId.writeTo(out);
   out.writeVInt(shards.length);
   for (ShardStats stats : shards) {
     stats.writeTo(out);
   }
 }