已有6个ES节点,使用docker-compose方式搭建。html
es1:master节点node
# elasticsearch.yml node.name: "es1" cluster.name: "docker-cluster" network.host: 0.0.0.0 node.master: true node.data: false
es二、es三、es4 热数据节点es6
# elasticsearch.yml node.name: "es2" # 提示:自行修改其余节点的名称 cluster.name: "docker-cluster" network.host: 0.0.0.0 node.master: false node.data: true discovery.zen.ping.unicast.hosts: ["es1"] node.attr.box_type: "hot" # 标识为热数据节点
es五、es6 冷数据节点docker
# elasticsearch.yml node.name: "es5-cool" # 提示:自行修改其余节点的名称
cluster.name: "docker-cluster"
network.host: 0.0.0.0
node.master: false
node.data: true
discovery.zen.ping.unicast.hosts: ["es1"]
node.attr.box_type: "cool" # 标识为热数据节点
PUT /_template/hot_template { "index_patterns" : "*", # 匹配全部的索引 "order" : 0, # 多个模板同时匹配,以order顺序倒排,order越大,优先级越高 "settings" : { "number_of_shards" : 2, "index.routing.allocation.require.box_type": "hot", # 指定默认为热数据节点 "number_of_replicas": 1 } }
提示:若是不想建立index模板,能够在建立index时在setting中指定 "index.routing.allocation.require.box_type": "hot" 配置,效果相同。elasticsearch
建立测试index:ide
POST /test_index/test { "test": "test" }
查看测试index的settings信息:测试
GET test_index/_settings 回显以下: { "test_index" : { "settings" : { "index" : { "routing" : { "allocation" : { "require" : { "box_type" : "hot" # 默认index模板匹配成功,数据存放在热数据节点 } } }, "number_of_shards" : "2", "provided_name" : "test_index", "creation_date" : "1553160622469", "number_of_replicas" : "1", "uuid" : "1q0SM1znRUKknJV6N8iJDQ", "version" : { "created" : "6060199" } } } } }
PUT test_index/_settings { "settings": { "index.routing.allocation.require.box_type": "cool" # 指定数据存放到冷数据节点 } }
ES会自动将 test_index 的数据迁移到冷数据节点上。ui
提示:更新索引标记的任务能够放到定时任务中去实现。es5
1. 有x台机器tag设置为hot
2. 有y台机器tag设置为cool
3. hot集群中只存最近两天的.
4. 有一个定时任务天天将前一天的索引标记为cool
5. es看到有新的标记就会将这个索引迁移到冷集群中, 这都是es自动完成的spa
参考:
https://elasticsearch.cn/article/6127
https://elasticsearch.cn/question/283
参考:https://www.elastic.co/guide/cn/elasticsearch/guide/current/backing-up-your-cluster.html
PUT _snapshot/my_backup # my_backup 备份的名称 { "type": "fs", "settings": { "location": "/mount/backups/my_backup" } }
ES一旦数据被删除没法经过translog进行数据恢复,因此必定要进行数据冷备。