博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ES查询index对应的mapping信息
阅读量:5363 次
发布时间:2019-06-15

本文共 918 字,大约阅读时间需要 3 分钟。

private void getMappingByIndex(String indices) throws IOException    {                GetMappingsRequest getMappingsRequest = new GetMappingsRequest();        getMappingsRequest.indices(indices).types(new String[0]);                GetMappingsResponse response = client.admin().indices().getMappings(getMappingsRequest).actionGet();        ImmutableOpenMap
> mappingsByIndex = response.getMappings(); for (ObjectObjectCursor
> indexEntry : mappingsByIndex) { if (indexEntry.value.isEmpty()) { continue; } System.out.println(indexEntry.key); for (ObjectObjectCursor
typeEntry : indexEntry.value) { System.out.println((typeEntry.key)); System.out.println(typeEntry.value.sourceAsMap()); } } }

 

转载于:https://www.cnblogs.com/woniu4/p/8312626.html

你可能感兴趣的文章
解决centOS7的IP为127.0.0.1,无法用Xshll链接问题
查看>>
vba
查看>>
vs2013常用快捷键收集
查看>>
网络编程之实现客户端与服务端聊天
查看>>
ADO.NET学习笔记(1)
查看>>
LTE的学习内容包含哪些方面呢?(zz)
查看>>
BLE控制器之链路层二
查看>>
编码反模式
查看>>
第六节 ADO.NET
查看>>
DataTable转CSV
查看>>
软件项目管理之--墨菲定理
查看>>
Codeforces Gym 100203I I - I WIN 网络流最大流
查看>>
Codeforces Beta Round #97 (Div. 1) B. Rectangle and Square 暴力
查看>>
cs331n 线性分类器损失函数与最优化
查看>>
UVA10106
查看>>
图形学杂记
查看>>
解决a标签IE下点击后出现轮廓框
查看>>
supervisor //todo
查看>>
Laravel Homestead: 403 forbidden on nginx, http://homestead.app访问不了
查看>>
SQLServer 的case when语句使用实现统计
查看>>