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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值