搜索节点配置文件
要使用Atlas CLI创建或更新集群的搜索节点,您可以使用 .json
配置文件来指定所需的搜索节点设置。
搜索节点设置
您可以在搜索节点配置文件中指定以下设置。 有关设置和说明的完整列表,请参阅API规范。
字段 | 类型 | 说明 |
---|---|---|
| 对象数组 | 用于为集群配置搜索节点的设置。 |
| 字符串 | 搜索节点实例大小的硬件规范。 此设置使用以下格式:
示例, |
| 整型 | 集群中的搜索节点数。 |
搜索节点配置文件示例
要在集群上创建或更新搜索节点,请在 JSON文件中定义搜索节点设置,如以下示例文件所示:
{ "specs": [ { "instanceSize": "S30_LOWCPU_NVME", "nodeCount": 2 } ] }
搜索节点配置命令示例
创建文件后,运行 Atlas CLI 命令以创建或更新搜索节点并指定clusterName
和file
选项。
创建搜索节点
以下示例使用名为search-nodes-config.json
的 JSON 配置文件为名为myCluster
的集群创建搜索节点:
atlas clusters search nodes create --clusterName myCluster --file search-nodes-config.json
更新搜索节点
以下示例使用名为search-nodes-config.json
的 JSON 配置文件更新名为myCluster
的集群的搜索节点:
atlas clusters search nodes update --clusterName myCluster --file search-nodes-config.json