当我在Elasticsearch中创建索引时,默认情况下会变热还是变暖? 我想设置一个过渡,但这不是原因。
答案 0 :(得分:0)
通常的想法是用热或热标记节点,例如 if jump_pressed:
if jump_count < 2:
jump_count += 1
jump()
grounded = false
if grounded == false:
if glide_pressed:
glide()
motion.x = speed
motion.y += GRAVITY
motion = move_and_slide(motion, FLOOR)
if is_on_floor():
grounded = true
jump_count = 0
else:
grounded = false
。
然后,您可以创建索引模板,以便必须在热节点上分配每个新索引:
node.attr.size=hot
一旦要将数据移动到热节点,就可以将索引设置更改为{
"order": 5,
"index_patterns": [
"metricbeat-*"
],
"settings": {
"routing.allocation.include.size": "hot"
}
}
(例如,在6.6+版本中使用“索引生命周期管理”)。