Today I added 2 warm data nodes to our 3 node cluster. This is the first time we are using anything besides hot nodes so I have some observations and questions.
The 3 hot data nodes have roles as below
"roles" : [
"data_content",
"data_hot",
"ingest",
"master",
"ml",
"transform"
]
The 2 warm nodes have roles as below
"roles" : [
"data_warm"
]
None of our ILM policies have warm phases configured but the warm nodes have a growing document count eg.
"indices" : {
"docs" : {
"count" : 299173140,
"deleted" : 0
}
}
The growth is sporadic since the new nodes were added. Is this expected and will I be able to see what kind of documents/indices are finding their way onto these nodes?
Thanks in advance!