Hello Everyone, I encounter the following issue: my_index is much more larger after a re_indexing and I've no idea why.
What I want to do:
- do a simple reindexing, keeping the same mapping, the destination index has 1 shards and 0 replicas.
Here is what I've done so far:
PUT /_template/filebeat_clone2
{
"version": 1,
"index_patterns": ["filebeat_clone2"],
"order": 0,
"settings": {
"index": {
"number_of_shards": "1",
"number_of_replicas": "0",
"refresh_interval": "5s"
}
}
}
POST _reindex?wait_for_completion=false
{
"source": {
"index": "filebeat-7.0.1-2019.05.13-000001"
},
"dest": {
"index": "filebeat_clone2"
}
}
GET _cat/indices/filebeat_clone,filebeat_clone2,filebeat-7.0.1-2019.05.13-000001?v&h=index,store.size,docs.count
index store.size docs.count
filebeat_clone2 107.9mb 366089
filebeat_clone 108.1mb 366089
filebeat-7.0.1-2019.05.13-000001 69.7mb 366089
GET filebeat-7.0.1-2019.05.13-000001/_settings
GET filebeat_clone/_settings
GET filebeat_clone2/_settings
GET _cat/shards/filebeat_clone,filebeat_clone2,filebeat-7.0.1-2019.05.13-000001?v
index shard prirep state docs store ip node
filebeat_clone 0 p STARTED 366089 108.1mb 192.168.63.15 cv0tlielaspoc
filebeat-7.0.1-2019.05.13-000001 0 p STARTED 366089 69.7mb 192.168.63.15 cv0tlielaspoc
filebeat_clone2 0 p STARTED 366089 107.9mb 192.168.63.15 cv0tlielaspoc
For some reason the two test indices have a larger size
Any advice?
Thanks in advance for you help,
kr,
Derrar.