Elasticsearch 创建索引

1.创建索引,支持实体转map
public boolean createIndex(T entity) {
String index = indexName(entity);
try {
CreateIndexRequest request = new CreateIndexRequest(index);
request.mapping(toMapping(entity));
client.indices().create(request, RequestOptions.DEFAULT);
} catch (IOException e) {
log.error("索引创建失败,Exception:", e);
}
return false;
}

/**
* 文档类型创建
*
* @param entity
*

Elasticsearch 创建索引最先出现在Python成神之路

版权声明:
作者:Mr李
链接:https://www.techfm.club/p/13106.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>