【问题标题】:AWS ElasticSearch CloudFormationAWS ElasticSearch CloudFormation
【发布时间】:2021-12-28 05:09:27
【问题描述】:

高级集群设置

  • 请求正文索引:true
  • 字段数据缓存分配:20
  • 子句最大计数:1024

如何使用 CloudFormation 配置这些,我已经尝试过

  AdvancedClusterSettings:
    RequestBodyIndex: true
    FieldDataCacheAllocation: 20
    ClauseMaximumCount: 1024

但这给出了以下错误: 遇到不支持的属性 AdvancedClusterSettings

【问题讨论】:

  • 如果给定的答案有帮助,那么接受它是一个好习惯。如果没有,那么解释为什么它没有帮助的评论会很有用。

标签: amazon-web-services elasticsearch amazon-cloudformation


【解决方案1】:

从文档 (https://docs.aws.amazon.com/opensearch-service/latest/developerguide/configuration-api.html) 中尝试:

  AdvancedOptions:
    "rest.action.multi.allow_explicit_index": "true|false",
    "indices.fielddata.cache.size": "40",
    "indices.query.bool.max_clause_count": "1024",
    "override_main_response_version": "true|false"

【讨论】:

    猜你喜欢
    • 2016-12-12
    • 2018-08-03
    • 1970-01-01
    • 2017-10-16
    • 2021-07-30
    • 1970-01-01
    • 1970-01-01
    • 2019-03-29
    • 2018-05-08
    相关资源
    最近更新 更多