Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

script_score the script could not be loaded scripts of type [inline], operation [search] and lang [groovy] are disabled

Currently I use the Elastisearch 1.5.
I want to update to the Elasticsearch 1.7.

And then when I run below query to the ES1.7, I got the error which is

nested: QueryParsingException[[my_index] script_score the script could not be loaded]; nested: ScriptException[scripts of type [inline], operation [search] and lang [groovy] are disabled]; .

This query definitely works on the ES 1.5 environment. I want to use same query to the ES 1.7.

{
  "query": {
    "function_score": {
      "query": {
        "filtered": {
          "query": {
            "query_string": {
              "fields": [
                "itemname"
              ],
              "query": "coke"
            }
          }
        }
      },
      "script_score": {
        "script": "_score + doc['myscore'].value"
      }
    }
  }
}

I have already read this document. https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-scripting.html#enable-dynamic-scripting

So, I have added below options to my elasticsearch.yml.

script.inline: on  
script.indexed: on 
script.engine.groovy.inline.aggs: on  

And I did to restart elasticsearch daemon and to create index again, but I still got the error.

Does anyone advise me how can I solve this problem ?

Added

[root@elasticsearch]# curl -XGET 'http://localhost:9200'
{
  "status" : 200,
  "name" : "Ghost Girl",
  "cluster_name" : "elasticsearch",
  "version" : {
    "number" : "1.7.1",
    "build_hash" : "b88f43fc40b0bcd7f173a1f9ee2e97816de80b19",
    "build_timestamp" : "2015-07-29T09:54:16Z",
    "build_snapshot" : false,
    "lucene_version" : "4.10.4"
  },
  "tagline" : "You Know, for Search"
}

[root@elasticsearch]# tail -n 10 /etc/elasticsearch/elasticsearch.yml
# http server. With this enabled, it may pose a security risk, so disabling
# it unless you need it is recommended (it is disabled by default).
#
#http.jsonp.enable: true

script.groovy.sandbox.enabled: true
script.inline: on
script.indexed: on
script.search: on
script.engine.groovy.inline.aggs: on

[root@elasticsearch]# /etc/rc.d/init.d/elasticsearch restart
Stopping elasticsearch:                                    [  OK  ]
Starting elasticsearch:                                    [  OK  ]

[root@elasticsearch]# curl -XPOST 'localhost:9200/my_index/_search?pretty' -d '{
>   "query": {
>     "function_score": {
>       "query": {
>         "filtered": {
>           "query": {
>             "query_string": {
>               "fields": [
>                 "itemname"
>               ],
>               "query": "coke"
>             }
>           }
>         }
>       },
>       "script_score": {
>         "script": "_score * 0.5"
>       }
>     }
>   }
> }'
{
  "took" : 3029,
  "timed_out" : false,
  "_shards" : {
    "total" : 5,
    "successful" : 3,
    "failed" : 2,
    "failures" : [ {
      "index" : "my_index",
      "shard" : 1,
      "status" : 400,
      "reason" : "RemoteTransportException[[Fury][inet[/xx.xx.xx.xx:9300]][indices:data/read/search[phase/query]]]; nested: SearchParseException[[ss][1]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\n  \"query\": {\n    \"function_score\": {\n      \"query\": {\n        \"filtered\": {\n          \"query\": {\n            \"query_string\": {\n              \"fields\": [\n                \"itemname\"\n              ],\n              \"query\": \"coke\"\n            }\n          }\n        }\n      },\n      \"script_score\": {\n        \"script\": \"_score * 0.5\"\n      }\n    }\n  }\n}]]]; nested: QueryParsingException[[my_index] script_score the script could not be loaded]; nested: ScriptException[scripts of type [inline], operation [search] and lang [groovy] are disabled]; "
    }, {
      "index" : "my_index",
      "shard" : 4,
      "status" : 400,
      "reason" : "RemoteTransportException[[Fury][inet[/xx.xx.xx.xx:9300]][indices:data/read/search[phase/query]]]; nested: SearchParseException[[my_index][4]: from[-1],size[-1]: Parse Failure [Failed to parse source [{\n  \"query\": {\n    \"function_score\": {\n      \"query\": {\n        \"filtered\": {\n          \"query\": {\n            \"query_string\": {\n              \"fields\": [\n                \"itemname\"\n              ],\n              \"query\": \"coke\"\n            }\n          }\n        }\n      },\n      \"script_score\": {\n        \"script\": \"_score * 0.5\"\n      }\n    }\n  }\n}]]]; nested: QueryParsingException[[my_index] script_score the script could not be loaded]; nested: ScriptException[scripts of type [inline], operation [search] and lang [groovy] are disabled]; "
    } ]
  },
  "hits" : {
    "total" : 0,
    "max_score" : null,
    "hits" : [ ]
  }
}
like image 509
k16 Avatar asked Sep 09 '15 01:09

k16


1 Answers

add script.engine.groovy.inline.update: on to the .yml file

like image 111
Arthur Xu Avatar answered Nov 11 '22 17:11

Arthur Xu