TubeArchivist Read Only Database #61

Closed
opened 2026-04-20 08:59:52 -04:00 by sickprodigy · 1 comment
Owner

Error:
error={"root_cause":[{"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"}],"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"} status=429

and also

87
error={"root_cause":[{"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"}],"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"} status=429

{'error': {'root_cause': [{'type': 'cluster_block_exception', 'reason': 'index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];'}], 'type': 'cluster_block_exception', 'reason': 'index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];'}, 'status': 429}

[cookie]: activated and stored in Redis

[cookie]: used cached cookie validation

Can't remember what i did to fix last time, think i took note in linux documentation

Error: error={"root_cause":[{"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"}],"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"} status=429 and also 87 error={"root_cause":[{"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"}],"type":"cluster_block_exception","reason":"index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];"} status=429 {'error': {'root_cause': [{'type': 'cluster_block_exception', 'reason': 'index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];'}], 'type': 'cluster_block_exception', 'reason': 'index [ta_config] blocked by: [TOO_MANY_REQUESTS/12/disk usage exceeded flood-stage watermark, index has read-only-allow-delete block; for more information, see https://www.elastic.co/guide/en/elasticsearch/reference/8.18/fix-watermark-errors.html];'}, 'status': 429} [cookie]: activated and stored in Redis [cookie]: used cached cookie validation Can't remember what i did to fix last time, think i took note in linux documentation
Author
Owner

What fixed it:

  • Clear the write block after freeing space:
    PUT _all/_settings
    {
    "index.blocks.read_only_allow_delete": null
    }
  • In Kibana Dev Tools, this returned { "acknowledged": true }.
  • After clearing the block, rerun the TubeArchivist migration or restart the container.
What fixed it: - Clear the write block after freeing space: PUT _all/_settings { "index.blocks.read_only_allow_delete": null } - In Kibana Dev Tools, this returned { "acknowledged": true }. - After clearing the block, rerun the TubeArchivist migration or restart the container.
Sign in to join this conversation.