cancel
Showing results for 
Search instead for 
Did you mean: 

Catalog Search index process unknown error

SOLVED

Catalog Search index process unknown error

# bin/magento indexer:reindex

...

Catalog Search index process unknown error:
{"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}

 

Has anyone run into this or can think of a way to repair it? Probably my own fault... I had tried to see if an html code (&quotSmiley Wink could be part of a product attribute label.

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Catalog Search index process unknown error

Answering my own question again...

Found this page  which indicated an out-of disk space problem (which is not the case, given 48GB free, here), but the command it mentioned, below, solved the problem for me. Overall, I'm not impressed with Elasticsearch.

 

curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'

 

View solution in original post

3 REPLIES 3

Re: Catalog Search index process unknown error

Answering my own question again...

Found this page  which indicated an out-of disk space problem (which is not the case, given 48GB free, here), but the command it mentioned, below, solved the problem for me. Overall, I'm not impressed with Elasticsearch.

 

curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'

 

Re: Catalog Search index process unknown error

thank you for solution. it works for me

Re: Catalog Search index process unknown error

Solution worked for me .. Thanks