Custom Lucene Index deletion from AEM Cloud
Hi All,
I have created custom Lucene index and it works fine in local but when I try deploy the same to Cloud, this new index impacting other queries where they use cq:tags.
<lucene-0-custom-2
jcr:primaryType="oak:QueryIndexDefinition"
async="[async,nrt]"
compatVersion="{Long}2"
evaluatePathRestrictions="{Boolean}true"
includedPaths="[/content/dam/mch/train-center/en]"
queryPaths="[/content/dam/mch/train-center/en]"
maxFieldLength="{Long}100000"
reindexCount="{Long}6"
type="lucene">
<indexRules jcr:primaryType="nt:unstructured">
<nt:unstructured
jcr:primaryType="nt:unstructured"
indexNodeName="{Boolean}true">
<properties jcr:primaryType="nt:unstructured">
<dcTitle
jcr:primaryType="nt:unstructured"
boost="{Double}2.0"
name="jcr:content/metadata/dc:title"
nodeScopeIndex="{Boolean}true"
ordered="{Boolean}true"
propertyIndex="{Boolean}true"
useInSpellcheck="{Boolean}true"
useInSuggest="{Boolean}true"/>
</properties>
</nt:unstructured>
</indexRules>
</lucene-0-custom-2>
When I try to delete the index from Cloud environment, type property setting as a "disabled" and not removing from Cloud environment.
I followed this steps to delete index but no luck
https://www.initialyze.com/insights/how-to-deploy-custom-oak-indexes-in-aem-as-a-cloud-services
Could you please help me how to delete custom index from AEM Cloud environment.