Kibana 6.5.4无法删除索引模式

时间:2019-02-15 14:52:12

标签: elasticsearch kibana elastic-stack kibana-6

我是Kibana 6.5.4的初学者,并且添加了索引模式。然后我想删除它,但我做不到...如图中所述,存在某些错误。我的电脑是Macbook 12,系统为10.12。 enter image description here

1 个答案:

答案 0 :(得分:0)

您的索引已锁定;最可能是因为您击中了flood stage watermark,这意味着您的磁盘剩余空间不到5%。

首先,添加更多可用磁盘空间或更改淹没阶段水印。例如,将其设置为100MB(但我只建议开发系统使用-可能太接近生产了):

PUT _cluster/settings
{
  "persistent": {
    "cluster.routing.allocation.disk.watermark.flood_stage": "100mb",
    "cluster.info.update.interval": "10s"
  }
}

解锁您的索引;要么是特定的(在这里my-index),要么您也可以使用_all

PUT my-index/_settings
{
  "index.blocks.read_only_allow_delete": null
}