Hi, my Nginx Filebeat module stopped to write data to ES.
({"type"=>"cluster_block_exception", "reason"=>"blocked by: [FORBIDDEN/12/index read-only / allow delete (api)]
It was solved by:
PUT _settings
{
"index": {
"blocks": {
"read_only_allow_delete": "false"
}
}
}
But why the index got in read-only state in the first place?
How I can debug and prevent such situations?