我们可以在elasticsearch中生成UUID字段吗?

时间:2017-08-07 05:06:39

标签: elasticsearch kibana

我需要在elasticsearch中创建自定义字段,就像“_ id”字段一样。另外,我需要在该字段中存储 UUID 值(AV2oDy5F6POrheehhR9d)。

目前,我在“_id”字段中存储了一个URL。我使用的弹性版本是 2.3.3 ,而kibana 4.5

根据我的观点,这两个字段将是这样的:

    {
  "took": 1,
  "timed_out": false,
  "_shards": {
    "total": 5,
    "successful": 5,
    "failed": 0
  },
  "hits": {
    "total": 1,
    "max_score": 0.9965843,
    "hits": [
      {
        "_index": "testIndex",
        "_type": "testType",
        "_id": "http://www.gmail.com",
        "_score": 0.9965843,
        "_source": {
          -----------------------------
          "uuid":"AV2oDy5F6POrheehhR9d"
        }
      }
    ]
  }
}

有人可以帮我这个吗?提前谢谢!

0 个答案:

没有答案