如何更新elasticsearch中的字段类型

时间:2013-04-30 01:06:04

标签: elasticsearch

ElasticSearch文档并不清楚如何执行此操作。

我索引了一些推文,其中一个字段created_at被索引为字符串而不是日期。我无法通过卷曲调用找到如何通过此更改重新索引。如果重建索引是一个复杂的过程,那么我宁愿只删除那里的东西并重新开始。但是,我找不到如何指定字段类型!

非常感谢任何帮助。

4 个答案:

答案 0 :(得分:28)

您需要使用Put Mapping AP I。

定义映射
curl -XPUT 'http://localhost:9200/twitter/_doc/_mapping' -H 'Content-Type: application/json'  -d '
{
    "_doc" : {
        "properties" : {
            "message" : {"type" : "text", "store" : true}
        }
    }
}
'

日期可以定义如下:

curl -XPUT 'http://localhost:9200/twitter/_doc/_mapping' -H 'Content-Type: application/json'  -d '
{
    "_doc" : {
        "properties" : {
            "user" : {"type" : "keyword", "null_value" : "na"},
            "message" : {"type" : "text"},
            "postDate" : {"type" : "date"},
            "priority" : {"type" : "integer"},
            "rank" : {"type" : "float"}
        }
    }
}
'

答案 1 :(得分:9)

如果要插入mysql时间戳,还需要指定格式而不仅仅是类型,那么你应该像这样添加一个格式。

"properties": {
    "updated_at": {
         "type": "date",
         "format": "yyyy-MM-dd HH:mm:ss"
     }
 }

如果我们考虑你的例子那么它应该是

"tweet" : {
    "properties" : {
        "user" : {"type" : "string", "index" : "not_analyzed"},
        "message" : {"type" : "string", "null_value" : "na"},
        "postDate" : {"type" : "date" , "format": "yyyy-MM-dd HH:mm:ss" },
        "priority" : {"type" : "integer"},
        "rank" : {"type" : "float"}
    }
} 

答案 2 :(得分:1)

创建新索引

PUT project_new

使用新的字段类型映射更新映射

PUT project_new/_mapping/_doc
{
    "properties": {
        "created_by": {
            "type": "text"
        },
        "created_date": {
            "type": "date"
        },
        "description": {
            "type": "text"
        }
}
}

用旧索引重新索引新索引,即数据迁移

POST _reindex
{
    "source": {
        "index": "project"
    },
    "dest": {
        "index": "project_new",
        "version_type": "external"
    }
}

将新建索引的别名改为指向旧索引名

POST _aliases
{
    "actions": [
        {
            "add": {
                "index": "project_new",
                "alias": "project"
            }
        },
        {
            "remove_index": {
                "index": "project"
            }
        }
    ]
}

现在您将能够在现有索引中查看更新后的类型。

Elasticsearch 6.4.3 版中测试和工作

答案 3 :(得分:0)

更新现有索引中的字段类型:

PUT test-index/doc/_mapping
{
    "doc" : {
        "properties" : {
            "testDateField" : {"type" : "date"}
        }
    }
}

在现有索引中添加具有特定类型的字段:

PUT test-index
{
  "mappings": {
    "doc": {
      "properties": {
        "testDateField" : {
          "type": "date"
        }
      }
    }
  }
}