How many indice types we can create in the same indice, is there any limit or unlimited(means depends on storage space) especially in Elasticsearch 5.x?
There is a hard limit in the number of fields in an index. And we are thinking of removing types in the future.
So I'd either use one index per type or I would create within a single type different paths for inner types:
foo: {
},
bar: {
}
Where foo and bar are the "types"
Note that it will create some sparse fields.
1 Like
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.