Elasticsearch系列篇之创建索引

Elasticsearch的index类似于关系型数据库的库的概念,在保存数据前,要先创建索引
使用curl命令创建
创建一个新的索引,并设置分片数和副本数
创建一个twitter的索引, 设置为3个分片,2个副本,默认5个分片,1个副本

curl -XPUT http://localhost:9200/twitter -d'
{
    "settings" : {
        "index" : {
            "number_of_shards" : 3, 
            "number_of_replicas" : 2 
        }
    }
}'

创建一个新的索引test,设置分片数为1,通过mapping初始化一个type1,type1有一个属性field1

curl -XPUT http://localhost:9200/test -d'
{
    "settings" : {
        "number_of_shards" : 1
    },
    "mappings" : {
        "type1" : {
            "properties" : {
                "field1" : { "type" : "text" }
            }
        }
    }
}'

创建索引twitter,并添加类型tweet

curl -XPUT 'http://localhost:9200/twitter/' -d '
{
  "mappings": {
    "tweet": {
      "properties": {
        "message": {
          "type": "string"
        }
      }
    }
  }
}'

添加一个type到存在的索引

curl -XPUT  'http://localhost:9200/twitter/_mapping/user' -d '
{
      "properties": {
        "username": {
          "type":"string"
        }
      }
}'

添加一个新的field到存在的type中(在twitter这个type中添加一个field use_name

curl -XPUT  'http://localhost:9200/twitter/_mapping/user' -d '
{
      "properties": {
        "address": {
          "type":"string"
        }
      }
}'

如果已经存在index,或者type, field,再次添加同样的type和field将会报错,不能更新
可以更新fileld的情况
type的属性是对象,这种情况可以更新对象

curl -XPUT  'http://localhost:9200/my_index -d'
{
  "mappings": {
    "user": {
      "properties": {
        "name": {
          "properties": {
            "first": {
              "type": "text"
            }
          }
        },
        "user_id": {
          "type": "keyword"
        }
      }
    }
  }
}'

上面的代码创建了my_index索引,并添加了一个user type, user的属性为对象name, name有两个属性first,user_id,这种情况就可以更新对象的属性

curl -XPUT  'http://localhost:9200/my_index/_mapping/user -d'
{
  "properties": {
    "name": {
      "properties": {
        "last": { 
          "type": "text"
        }
      }
    },
    "user_id": {
      "type": "keyword",
      "ignore_above": 100 
    }
  }
}'

上面的代码更新了name对象,添加了last属性,更新了user_id属性,添加了它的ignore_above属性

总结:
创建索引时可以直接制定type(通过mapping)
添加新的type到存在的索引,使用url(_mapping)
添加新的field到存在的type,使用url (_mapping)
不能更新存在的field

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要合理创建 Elasticsearch(ES)索引,需要考虑以下几个方面: 1. 确定索引的名称:ES中的索引名称应该简洁明了,能够清楚地表达索引的用途或内容。 2. 确定索引的字段:确定需要存储的字段以及字段的类型。在创建索引时,需要指定每个字段的映射类型,包括文本、数字、日期等等。 3. 确定分片和副本:根据数据量和查询负载来确定分片和副本的数量,以实现最佳性能和可用性。 4. 配置索引分析器:ES中的分析器用于将文本字段拆分成单词,并将这些单词标准化以便于搜索。可以根据需要配置合适的分析器。 5. 配置索引设置:根据需要配置索引的相关设置,包括存储大小、写入限制、刷新间隔等等。 6. 优化索引性能:可以通过调整索引缓存、启用压缩、设置合理的索引刷新间隔等方式来优化索引性能。 创建索引的基本语法如下: ``` PUT /索引名称 { "settings": { "number_of_shards": 分片数量, "number_of_replicas": 副本数量 }, "mappings": { "properties": { "字段名称": { "type": "字段类型" } } } } ``` 例如,创建一个名为“my_index”的索引,包含“title”和“content”两个字段,其中“title”为文本类型,而“content”为长文本类型,可以使用以下命令: ``` PUT /my_index { "settings": { "number_of_shards": 5, "number_of_replicas": 1 }, "mappings": { "properties": { "title": { "type": "text" }, "content": { "type": "text", "analyzer": "english" } } } } ``` 以上是创建索引的基本步骤和语法,根据实际需求,可以进一步配置索引的设置和优化性能。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值