Can anyone tell me how to enable it for an embedded ElasticSearch?
Groovy worked without any problems in 2.1.1 ( Only "script.engine.groovy.inline.search", "true" was needed in my case).
I added all the Jars from the new module directories.
My settings look like this:
Settings.settingsBuilder().put("script.file" , "true").put("script.indexed" , "true").put("script.inline" , "true"). put( "script.engine.groovy.inline.search", "true"). put( "script.engine.groovy.inline.update", "true"). put( "script.engine.groovy.inline.mapping", "true")
I also tried to set a java.policy file.
I always see this error: IllegalArgumentException[script_lang not supported [groovy]
Do I have to manually load the Groovy module or something like that?