当前位置:网站首页>kibana 使用json文档数据
kibana 使用json文档数据
2022-07-17 22:47:00 【tonysh_zds】
GET _search
{
"query": {
"match_all": {}
}
}
GET /aaabbcc/_mapping/
GET /item_index/_mapping/
DELETE /item_index
GET /item_index/_search
{
"query": {
"match_all": {}
}
}
POST item_index/_delete_by_query
{
"query": {
"match_all": {}
}
}
# 修改文档数据 结构,对应java String 类型,指定关键字类型用于排序(objnameCn 为String java类型指定为 keyword 用户按分类排序)
PUT /item_index
{
"mappings" : {
"properties" : {
"auditComment" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"createBy" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"createTime" : {
"type" : "long"
},
"deptId" : {
"type" : "long"
},
"enabled" : {
"type" : "long"
},
"esstatus" : {
"type" : "long"
},
"id" : {
"type" : "long"
},
"jsonCn" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"jsonEn" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"jsonHightEn" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"objname" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"objnameCn" : {
"type" : "keyword",
"store" : true
},
"realName" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"updateTime" : {
"type" : "long"
},
"updatedBy" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
},
"uuid" : {
"type" : "text",
"store" : true,
"analyzer" : "ik_max_word",
"search_analyzer" : "ik_smart"
}
}
}
}
边栏推荐
- 009 execution sequence of SQL statement of interview questions
- Re understanding of Fourier transform
- 微信小程序9-发布代码
- Li Hongyi machine learning -- return to July 13, 2022
- Icml2022 | geometric multimodal comparative representation learning
- 长安链学习研究-存储分析wal机制
- 3U VPX cooling conduction high performance srio/ Ethernet data exchange board
- Cross domain and CORS
- Google Earth engine - Classification and processing of UAV images
- Wechat applet 7 cloud storage
猜你喜欢

Oracle - 锁

Single channel 6Gsps 12 bit AD acquisition and single channel 6Gsps 16 bit Da (ad9176) output sub card based on vita57.1 standard

Leetcode 1296. Divide the array into a set of consecutive numbers (solved)

傅里叶变换的再理解

2021.07.13【B站】是这样崩的

原始套接字

GYM103660H. Distance

解决jupyter控制台出现中文乱码的问题

Maximum heap and heap sort and priority queue

微信小程序8-云函数
随机推荐
Li Hongyi machine learning -- return to July 13, 2022
LeetCode 912.排序
Leetcode 1296. Divide the array into a set of continuous numbers (provide an idea)
TDesign compositionapi refactoring path
论文阅读 TEMPORAL GRAPH NETWORKS FOR DEEP LEARNING ON DYNAMIC GRAPHS
3438. 数制转换
Comparison of two virtual machines
Top domestic experts gathered in Guangzhou to discuss the safety application of health care data
Li Hongyi machine learning introduction -2022.07.11
Icml2022 | geometric multimodal comparative representation learning
6U VPX high speed signal processing board based on ku115+mpsoc (xcku115 + zu9eg +dsp)
FPGA (VGA Protocol Implementation)
06_服务调用Feign
MySQL CPU usage is soaring. How to locate who is occupying it
微信小程序合集
【花雕动手做】有趣好玩的音乐可视化项目(11)---WS2812幻彩灯带
一次函数 T1744 963字符写法
Face technology: the picture of unclear people is repaired into a high-quality and high-definition image framework (with source code download)
Tips for using setup
B树