Home > Back-end >  Es the index mapping set excludes, finally store does not save disk space
Es the index mapping set excludes, finally store does not save disk space

Time:02-24

Sets excludes such as topic, es index mapping, finally store did not save disk space, is this why?
The index is as follows:
{
"Test1" : {
"The mappings" : {
"Dynamic" : "false",
"_source" : {
"Includes" : [-
"SerialNo used to
"],
"Excludes" : [-
"Code",
"Duration",
"IP",
"Method",
"The project",
"The response,"
"Uri",
"Timestamp"
]
},
"Properties" : {
"Code" : {
"Type" : "short"
},
"Duration" : {
"Type" : "long"
},
"IP" : {
"Type" : "keyword"
},
"Method" : {
"Type" : "keyword"
},
"The project" : {
"Type" : "keyword"
},
"Response" : {
"Type" : "text"
},
"SerialNo used to" : {
"Type" : "keyword"
},
"Timestamp" : {
"Type" : "long"
},
"Uri" : {
"Type" : "keyword"
}
}
}
}
}
  • Related