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 
        }
    }
}'123456789

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

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

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

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

添加一个type到存在的索引

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

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

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

如果已经存在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"
        }
      }
    }
  }
}'12345678910111213141516171819

上面的代码创建了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 
    }
  }
}'12345678910111213141516

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

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

Last updated