I can not update and store my Business data and get the following exception if I do it e.g. ivy.repo.save(in.myDossier):

ElasticsearchException: Elasticsearch update index of document failed because of:
{
   "root_cause":[
      {
         "type":"cluster_block_exception",
         "reason":"index [ivy.businessdata-abc] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"
      }
   ],
   "type":"cluster_block_exception",
   "reason":"index [ivy.businessdata-abc] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"
}

It seems that it is now forbidden to write to the Elasiticsearch index because it is read-only. Why is my index read-only? I did not do anything. It suddenly stopped working.

asked 01.10.2019 at 04:05

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122
accept rate: 77%

edited 01.10.2019 at 07:59


This can happen if you are nearly out of disk space. If you have used 95% or more of your disk, Elasticsearch enforces a read-only index. This means no update and adding to the index is allowed only deletion will work.

You just have to clean up your disk to have more than 5% free disk space (anyway a good idea:) and restart Axon.ivy. Then it should work again.

See detailed information in the Elasticsearch reference about the configuration properties and what happens when.

link

answered 01.10.2019 at 04:10

Christian%20Strebel's gravatar image

Christian St... ♦
3.2k31338
accept rate: 88%

edited 01.10.2019 at 08:06

SupportIvyTeam's gravatar image

SupportIvyTeam ♦♦
1.4k102118122

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×22
×17

Asked: 01.10.2019 at 04:05

Seen: 1,946 times

Last updated: 01.10.2019 at 08:06