https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html提到可以通过禁用自动创建索引
可以通过在所有节点的配置文件中将 action.auto_create_index 设置为 false 来禁用自动索引创建。
如何使用 Java AWSElasticsearchClient 类或以任何其他方式在 Elasticsearch 作为服务中完成此操作?
https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html提到可以通过禁用自动创建索引
可以通过在所有节点的配置文件中将 action.auto_create_index 设置为 false 来禁用自动索引创建。
如何使用 Java AWSElasticsearchClient 类或以任何其他方式在 Elasticsearch 作为服务中完成此操作?
目前无法通过控制台执行此操作。配置域屏幕中没有选项(即使在高级选项下)
你能做的是
curl -X PUT "'https://<blah>.ca-central-1.es.amazonaws.com/_cluster/settings" -H 'Content-Type: application/json' -d'
{
"persistent": {
"action.auto_create_index": "false"
}
}
'
设置集群设置,如https://www.elastic.co/guide/en/elasticsearch/reference/6.4/docs-index_.html#index-creation中所述