弹性搜索以浮动形式返回时间,而不是时间戳

时间:2019-05-16 15:37:08

标签: elasticsearch go timestamp yaml

我正在使用一个框架(不是我自己制作的),它使用弹性搜索来保存和检索数据,这是我第一次使用ES。

当我在ElasticSearch中将update_time保存为时间戳时,邮递员将显示以下条目:

"_source": {
                    "cursor": 1556473815,// TimeStamp
                    "identification": "somekeys",
                    "type": "some_crusor"
                }

现在,当我取回它时,它以float形式返回值:1.556473815e+09

为什么会这样?以及如何解决这个问题并获得原样的价值。

谢谢。

已更新:

        "settings": {
            "index": {
                "format": "6",
                "codec": "best_compression",
                "number_of_shards": "1",
                "auto_expand_replicas": "0-1",
                "number_of_replicas": "0"
            }
    ```

0 个答案:

没有答案