Text Index Acceleration

Procedure

  1. Choose Clusters in the navigation pane. On the Clusters page, locate the target cluster, and click Access Kibana in the Operation column.
  2. In the navigation tree on the left, choose Dev Tools.
  3. On the Dev Tools page, run the following command:
    PUT my_index 
    {
      "settings": {
        "index.native_speed_up": true,
        "index.native_analyzer": true
      },
      "mappings": {
        "properties": {
          "my_field": {
            "type": "text"
          }
        }
      }
    }