Elastic Search Java Api 创建索引结构,添加索引

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
创建TCP客户端
Client client = new TransportClient()
             .addTransportAddress(new InetSocketTransportAddress(
                     "localhost", 9300));
创建索引
	client.admin().indices().prepareCreate("pages").execute().actionGet();
创建索引结构
	XContentBuilder builder=XContentFactory
			.jsonBuilder()
			.startObject()
			    .startObject("sina")
				.startObject("properties")
					.startObject("article_title")
						.field("type", "string")
						.field("store", "yes")
						.field("analyzer","ik")
						.field("index","analyzed")
					.endObject()
					.startObject("article_content")
						.field("type", "string")
						.field("store", "no")
						.field("analyzer","ik")
						.field("index","analyzed")
					.endObject()
					.startObject("article_url")
						.field("type", "string")
						.field("store", "yes")
						.field("index","not_analyzed")
					.endObject()
				.endObject()
			.endObject()
		.endObject();
PutMappingRequest mapping = Requests.putMappingRequest("pages").type("sina").source(builder);
client.admin().indices().putMapping(mapping).actionGet();
添加索引数据		
IndexResponse response = client.prepareIndex("pages", "sina", null)
		.setSource(jsonBuilder()
			.startObject()
			      .field("article_title", Bytes.toString(r.getValue("article".getBytes(), "title".getBytes())))
			       .field("article_content", Bytes.toString(r.getValue("article".getBytes(), "content".getBytes())))
			        .field("article_url", Bytes.toString(r.getValue("article".getBytes(), "url".getBytes())))
			   .endObject()
			   )
		.execute()
		.actionGet();
			
client.close();



标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇: IOS 扫二维码

下一篇:java 获取线程状态 判断线程是否已启动