TomonoriSoejima / Tejun

notes related to working cases
5 stars 3 forks source link

runtime test #157

Open TomonoriSoejima opened 11 months ago

TomonoriSoejima commented 11 months ago
PUT hello-apple
PUT hello-apple/_mapping
{
  "properties": {
    "f1": {
      "type": "text"
    }
  },
  "runtime": {
    "f1": {
      "type": "keyword",
      "script": {
        "source": "emit(doc['f1.keyword'].value)"
      }
    }
  }
}

POST hello-apple/_doc/1
{
  "f1" : "text"
}

GET hello-apple/_search
image image