ES使用腳本進行局部更新的排錯記錄

初學Elasticsearch,在按照《Elasticsearch服務器開發(第2版)》進行學習的過程當中,在P17頁中1.4.5 更新文檔小節,使用腳本對文檔進行局部更新的時候遇到了以下報錯:html

  ~ curl -XPOST http://127.0.0.1:9200/blog/article/1/_update -d '{"script": "ctx._source.content=\"new content\""}'
{
	"error":{
		"root_cause":[{
			"type":"remote_transport_exception",
			"reason":"[Lady Mandarin][127.0.0.1:9300][indices:data/write/update[s]]"
			}
		],
		"type":"illegal_argument_exception",
		"reason":"failed to execute script",
		"caused_by":{
			"type":"script_exception",
			"reason":"scripts of type [inline], operation [update] and lang [groovy] are disabled"}},
			"status":400
}%

我根據提示中的緣由"scripts of type [inline], operation [update] and lang [groovy] are disabled"進行了查詢,查到了官網文檔關於對腳本更新的介紹(介紹連接)。bash

經過粗略查看文檔,我發現要解決這個問題,須要在Elasticsearch的配置文件elasticsearch.yml中添加以下配置:服務器

script.engine.groovy.inline.update: oncurl

因爲Elasticsearch默認使用的是Groovy語言。Groovy語言一個快速且功能豐富的腳本語言,語法相似於Javascript。它在一個沙盒(sandbox)中運行,以防止惡意用戶毀壞Elasticsearch或***服務器。
因爲默認Elasticsearch沒有打開Groovy的update權限,所以咱們沒法經過Groovy進行更新操做,經過上述配置打開權限以後,就能夠進行更新操做了。elasticsearch

 ~ curl -XPOST http://127.0.0.1:9200/blog/article/1/_update -d '{"script": "ctx._source.content=\"new content\""}'
{
	"_index":"blog",
	"_type":"article",
	"_id":"1",
	"_version":2,
	"_shards":{
		"total":2,
		"successful":1,
		"failed":0
	}
}%
相關文章
相關標籤/搜索