ElasticSearch 实用学习笔记 (从入门到精通)
{
"settings": {
"index": {
"number_of_shards": "5",
"number_of_replicas": "1"
}
},
"mappings": {
"properties": {
"message": {
"type": "text"
},
"user_id": {
"type": "keyword"
},
"age": {
"type": "integer"
},
"timestamp": {
"type": "date"
}
}
}
}
这个代码实例展示了如何在ElasticSearch中创建一个索引,并定义其映射。其中包括了索引分片数(number\_of\_shards)和副本数(number\_of\_replicas)的设置,以及文档字段的数据类型定义。这对于学习如何设置ElasticSearch索引和查询文档是非常有用的。
评论已关闭