AWS ElasticSearchService index_create_block_exception

Abh*_*wal 6 amazon-web-services elasticsearch amazon-elasticsearch

我在尝试在增加集群大小并查看index_create_block_exception之后在AWS ElasticSearch集群中创建新索引.我怎么能纠正这个?我试过搜索但没有得到确切的答案.谢谢.

curl -XPUT 'http://<aws_es_endpoint>/optimus/'

{"error":{"root_cause":[{"type":"index_create_block_exception","reason":"blocked by: [FORBIDDEN/10/cluster create-index blocked (api)];"}],"type":"index_create_block_exception","reason":"blocked by: [FORBIDDEN/10/cluster create-index blocked (api)];"},"status":403}
Run Code Online (Sandbox Code Playgroud)

Kul*_*gar 12

根据AWS,由于磁盘内存不足,导致上述异常被抛出.

对于t2实例,当JVMMemoryPressure指标超过92%时,Amazon ES会通过阻止所有写入操作来触发保护机制,以防止群集进入红色状态.启用保护后,写入操作将失败并出现ClusterBlockException错误,无法创建新索引,并且将抛出IndexCreateBlockException错误.

我担心这个问题仍然存在.