Complete the code to set a node as a master node in Elasticsearch.
node.roles: ["[1]"]
Setting node.roles to ["master"] makes the node a master-eligible node.
Complete the code to configure a node to handle data storage in Elasticsearch.
node.roles: ["[1]"]
Setting node.roles to ["data"] configures the node to store and manage data.
Fix the error in the code to enable ingest capabilities on a node.
node.roles: ["[1]"]
The ingest role enables a node to process ingest pipelines before indexing documents.
Fill both blanks to configure a node as both master and data node.
node.roles: ["[1]", "[2]"]
Combining master and data roles allows the node to manage cluster state and store data.
Fill all three blanks to configure a node with master, data, and ingest roles.
node.roles: ["[1]", "[2]", "[3]"]
Setting roles to master, data, and ingest enables the node to manage cluster state, store data, and process ingest pipelines.