Hi, I've indexed some of my documents and built an index, some of the
properties are for e.g.
"ownership" : {
"dynamic" : "true",
"properties" : {
"author" : {
"type" : "string"
}
}
},
"plans" : {
"type" : "string"
},
It also has another property components, whose mapping I had not
specified and now it's messed up my index,
"components" : {
"dynamic" : "true",
"properties" : {
"ABC" : {
"dynamic" : "true",
I want to keep the rest of my index intact but delete the property/
mapping for components. Can someone please tell me how to do this?
I've tried curl -XDELETE 'http://localhost:9200/holisticsuites/suites/
components/' but to no avail. Thanks
--