/** 销毁 */
 @Override
 public void destroy() throws Exception {
   super.destroy();
   if (esClient != null) {
     esClient.close();
   }
   if (node != null) {
     node.close();
   }
 }