public void putToIndex(String idx, String json, String id){
try{
Client client=new ESClient().getClient();
IndexResponse response = client.prepareIndex(idx, SiteSearchAPI.ES_SITE_SEARCH_MAPPING, id)
.setSource(json)
.execute()
.actionGet();
} catch (Exception e) {