0
0
Elasticsearchquery~10 mins

Hot-warm-cold architecture in Elasticsearch - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to define a hot node attribute in Elasticsearch.

Elasticsearch
"node.attr.box_type": "[1]"
Drag options to blanks, or click blank then click option'
Afrozen
Bwarm
Chot
Dcold
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'warm' or 'cold' instead of 'hot' for hot nodes.
2fill in blank
medium

Complete the code to set the index lifecycle phase to warm.

Elasticsearch
"index.lifecycle.phase": "[1]"
Drag options to blanks, or click blank then click option'
Ahot
Bdelete
Ccold
Dwarm
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing 'warm' with 'hot' or 'cold' phases.
3fill in blank
hard

Fix the error in the node attribute setting for cold nodes.

Elasticsearch
"node.attr.box_type": "[1]"
Drag options to blanks, or click blank then click option'
Acold
Bhot
Cwarm
Darchive
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'archive' or 'warm' instead of 'cold' for cold nodes.
4fill in blank
hard

Fill both blanks to set the index lifecycle policy for hot and warm phases.

Elasticsearch
"index.lifecycle.phase": "[1]",
"node.attr.box_type": "[2]"
Drag options to blanks, or click blank then click option'
Ahot
Bwarm
Ccold
Ddelete
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing 'warm' or 'cold' values in hot phase settings.
5fill in blank
hard

Fill all three blanks to define a cold node with the correct lifecycle phase and node attribute.

Elasticsearch
"index.lifecycle.phase": "[1]",
"node.attr.box_type": "[2]",
"index.routing.allocation.require.box_type": "[3]"
Drag options to blanks, or click blank then click option'
Ahot
Bwarm
Ccold
Dfrozen
Attempts:
3 left
💡 Hint
Common Mistakes
Using different values for lifecycle phase and node attributes causing misallocation.