@Override
 public String toString() {
   String sSource = "_na_";
   try {
     sSource = XContentHelper.convertToJson(source, false);
   } catch (Exception e) {
     // ignore
   }
   return "index {[" + index + "][" + type + "][" + id + "], source[" + sSource + "]}";
 }