本文介绍了簇块期望的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用了articulate来构建我的聊天机器人. https://github.com/samtecspg/articulate

I use articulate for building my chatbot. https://github.com/samtecspg/articulate

执行 docker-compose up

api_1            | 
api_1            | /usr/src/app/server/index.js:33
api_1            |     throw err;
api_1            |     ^
api_1            | [cluster_block_exception] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)]; :: {"path":"/document/_mapping/document","query":{},"body":"{\"properties\":{\"document\":{\"type\":\"text\"},\"time_stamp\":{\"type\":\"date\"},\"maximum_saying_score\":{\"type\":\"float\"},\"maximum_category_score\":{\"type\":\"float\"},\"total_elapsed_time_ms\":{\"type\":\"text\"},\"rasa_results\":{\"type\":\"object\"},\"session\":{\"type\":\"text\"},\"agent_id\":{\"type\":\"integer\"},\"agent_model\":{\"type\":\"text\"}}}","statusCode":403,"response":"{\"error\":{\"root_cause\":[{\"type\":\"cluster_block_exception\",\"reason\":\"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];\"}],\"type\":\"cluster_block_exception\",\"reason\":\"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];\"},\"status\":403}"}
api_1            |     at respond (/usr/src/app/node_modules/elasticsearch/src/lib/transport.js:308:15)
api_1            |     at checkRespForFailure (/usr/src/app/node_modules/elasticsearch/src/lib/transport.js:267:7)
api_1            |     at HttpConnector.<anonymous> (/usr/src/app/node_modules/elasticsearch/src/lib/connectors/http.js:165:7)
api_1            |     at IncomingMessage.wrapper (/usr/src/app/node_modules/lodash/lodash.js:4949:19)
api_1            |     at IncomingMessage.emit (events.js:187:15)
api_1            |     at IncomingMessage.EventEmitter.emit (domain.js:442:20)
api_1            |     at endReadableNT (_stream_readable.js:1081:12)
api_1            |     at process._tickCallback (internal/process/next_tick.js:63:19)
api_1            | [nodemon] app crashed - waiting for file changes before starting...

即使遇到此错误,我也清除了15GB的空间.

I've cleared 15gb of my space eventhough I get this error.

推荐答案

索引可能变为只读.

使用以下命令:

   curl -s -H 'Content-Type: application/json' -XPUT '[IP-server]:9200/_all/_settings?pretty' -d ' {
    "index":{
             "blocks" : {"read_only_allow_delete":"false"}
    }
}'

这篇关于簇块期望的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 13:41