elasticsearch - 时间戳字段上的doc值

时间:2014-12-11 08:19:50

标签: elasticsearch

我的聚合查询存在内存问题。 我的弹性版本是1.3.2 我厌倦了将_timestamp定义为doc值, 但是当我检查映射时,我发现它没有用 它在其他领域没有发生过。 时间戳字段和文档值是否存在任何已知问题?

1 个答案:

答案 0 :(得分:0)

你试过这个映射吗?

{
  "tweet" : {
    "_timestamp" : {
      "enabled" : true,
      "format" : "YYYY-MM-dd"
    }
  }

我正在使用指定版本(13.2)。我在我的项目中设置了这样的自定义日期字段,它对我有用:

PUT 'http://127.0.0.1:9200/a252e39969665bb4d065/' -d
'{
    "a252e39969665bb4d065": {
       "mappings": {
            "_default_": {
                "properties": {
                    "createdDate": {
                        "type": "date",
                        "format": "dateOptionalTime"
                    }
                }
            }
        }
    }
}'

请注意,我在这里使用默认映射(索引中所有类型的默认映射)。您可以通过在映射中替换“ default ”来在索引中使用指定的类型。