curl -XPUT 127.0.0.1:9200/l?pretty -d '
{
"settings" : {
"index" : {
"number_of_shards" : 1 ,
"number_of_replicas" : 0
}
},
"analysis": {
"analyzer": {
"semicolon": {
"type": "pattern",
"pattern":";"
}
}
}
},
"mappings" : {
"l" : {
"properties" : {
"category" : {
"type" : "string",
"index" : "not_analyzed"
},
"article_id" : {
es表设计
最新推荐文章于 2024-08-21 19:39:24 发布
该博客介绍了如何设计Elasticsearch(ES)的表,包括设置索引数量、副本数量,以及分析器的配置。内容涉及字段如category、article_id、authors、keywords、title、abstract、parent_id、org_name和date的类型定义和分析方式,例如使用 ik_max_word 分析器和自定义的semicolon分析器处理分隔符。
摘要由CSDN通过智能技术生成