Hi teams,
When using the API: GET _cat/indices?v, the output would includes columns here:
health
status
index
uuid
pri
rep
docs.count
docs.deleted
store.size
pri.store.size
dataset.size
My questions are:
- What is the count of docs can be used to search? Is it equals with docs.count? or equals with the difference result of (docs.count - docs.deleted)?
- what is the difference of columns: store.size & pri.store.size & dataset.size? If I want to know the sum size of all searchable docs in one index, can I use "data.size" only? If not, how can I get it?
heartfelt thanks,