elasticsearch创建索引 ,mapping,dynamic_templates
程序员文章站
2022-07-09 15:37:49
...
简述
elasticsearch 创建索引时通常需要配置mapping。mapping的含义类似于关系数据库中的表结构。但mapping更加灵活。
创建
以下实例是创建索引:my-index-000001,并加入dynamic_templates。
地址
http://localhost:9400/my-index-000001
方式
put
端口
http 端口
模板内容
{
"mappings": {
"_default_": {
"dynamic_templates": [
{
"string_fields": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"analyzer": "ik_max_word",
"fields": {
"raw": {
"ignore_above": 2000,
"type": "keyword"
}
},
"index": "true",
"omit_norms": true,
"type": "text"
}
}
}
],
"properties": {
"amount": {
"type": "double"
}
}
}
}
}
curl 方式
curl --location --request PUT 'http://localhost:9400/my-index-000001' \
--header 'Content-Type: application/json' \
--data-raw '{
"mappings": {
"_default_": {
"dynamic_templates": [
{
"string_fields": {
"match": "*",
"match_mapping_type": "string",
"mapping": {
"analyzer": "ik_max_word",
"fields": {
"raw": {
"ignore_above": 2000,
"type": "keyword"
}
},
"index": "true",
"omit_norms": true,
"type": "text"
}
}
}
],
"properties": {
"contract_amount": {
"type": "double"
}
}
}
}
}'
总结
上面的模板中配置了 amount
为double
类型。分词器:ik_max_word,查询不分词的属性:raw
推荐阅读
-
SpringDataElasticsearch操作Elasticsearch创建索引库以及创建映射
-
Elasticsearch索引(index)、映射(mapping)等相关的创建
-
ElasticSearch创建索引(index)和添加映射(mapping)
-
ElasticSearch创建索引报错Root mapping definition has unsupported parameters:
-
ElasticSearch创建索引详细说明
-
elasticsearch创建索引 ,mapping,dynamic_templates
-
ElasticSearch中Mapping创建
-
【Elasticsearch】之 创建索引(Index)
-
Elasticsearch Java API 的使用(14)—优化索引创建之setting设置、写入优化
-
Elasticsearch Postman简单入门(创建索引并新增)