本文整理汇总了Java中org.elasticsearch.action.delete.DeleteResponse.getId方法的典型用法代码示例。如果您正苦于以下问题:Java DeleteResponse.getId方法的具体用法?Java DeleteResponse.getId怎么用?Java DeleteResponse.getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.elasticsearch.action.delete.DeleteResponse
的用法示例。
在下文中一共展示了DeleteResponse.getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processDelete
import org.elasticsearch.action.delete.DeleteResponse; //导入方法依赖的package包/类
/**
* Processes a "delete" request.
*
* @param urlItems Items of the URL
* @return Result of the delete request, it contains the id of the deleted document
*/
private InterpreterResult processDelete(String[] urlItems) {
if (urlItems.length != 3
|| StringUtils.isEmpty(urlItems[0])
|| StringUtils.isEmpty(urlItems[1])
|| StringUtils.isEmpty(urlItems[2])) {
return new InterpreterResult(InterpreterResult.Code.ERROR,
"Bad URL (it should be /index/type/id)");
}
final DeleteResponse response = client
.prepareDelete(urlItems[0], urlItems[1], urlItems[2])
.get();
if (response.isFound()) {
return new InterpreterResult(
InterpreterResult.Code.SUCCESS,
InterpreterResult.Type.TEXT,
response.getId());
}
return new InterpreterResult(InterpreterResult.Code.ERROR, "Document not found");
}
示例2: deleteIndex
import org.elasticsearch.action.delete.DeleteResponse; //导入方法依赖的package包/类
/**
* 仅仅只删除索引
* @param index
* @param type
* @param id
*/
private static void deleteIndex(String index, String type, String id){
Client client = createTransportClient();
DeleteResponse response = client.prepareDelete(index, type, id)
.execute()
.actionGet();
boolean isFound = response.isFound();
System.out.println("索引是否 存在:"+isFound); // 发现doc已删除则返回true
System.out.println("****************index ***********************");
// Index name
String _index = response.getIndex();
// Type name
String _type = response.getType();
// Document ID (generated or not)
String _id = response.getId();
// Version (if it's the first time you index this document, you will get: 1)
long _version = response.getVersion();
System.out.println(_index+","+_type+","+_id+","+_version);
//优化索引
OptimizeRequest optimizeRequest = new OptimizeRequest(index);
OptimizeResponse optimizeResponse = client.admin().indices().optimize(optimizeRequest).actionGet();
System.out.println(optimizeResponse.getTotalShards()+","+optimizeResponse.getSuccessfulShards()+","+optimizeResponse.getFailedShards());
//刷新索引
FlushRequest flushRequest = new FlushRequest(index);
flushRequest.force(true);
FlushResponse flushResponse = client.admin().indices().flush(flushRequest).actionGet();
System.out.println(flushResponse.getTotalShards()+","+flushResponse.getSuccessfulShards()+","+flushResponse.getFailedShards());
}
示例3: deltele
import org.elasticsearch.action.delete.DeleteResponse; //导入方法依赖的package包/类
@Override
public String deltele(String id) {
DeleteResponse response = transportClient.prepareDelete(index, type, id).get();
return response.getId();
}