I have created a search service on azure. Now there is some data change on the db and some values are removed. When i reset and run the indexer after completion the search explorer is still showing old values which are not required. For example:this the response before change for cycle:202007
"ID":"ABC_202007",
"EntityID": "ABC",
"PartnerOneName": "ABC",
"RiskScore": 47.04,
"POCount": 2,
"POAmount": 591925.54,
"Category": "ABC",
"Cycle": "202007",
"Country": "ABC",
"Area": "ABC",
"POAmountScore": 100,
"POCountScore": 96,
now, after some time the cycle is changed to 202019 and when i reset and run the indexer the response is :
{
"ID":"ABC_202007"
"EntityID": "ABC",
"PartnerOneName": "ABC",
"RiskScore": 47.04,
"POCount": 2,
"POAmount": 591925.54,
"Category": "ABC",
"Cycle": "202007",
"Country": "ABC",
"Area": "ABC",
"POAmountScore": 100,
"POCountScore": 96,
},
{
"ID":"ABC_202019"
"EntityID": "ABC",
"PartnerOneName": "ABC",
"RiskScore": 47.04,
"POCount": 2,
"POAmount": 591925.54,
"Category": "ABC",
"Cycle": "202019",
"Country": "ABC",
"Area": "ABC",
"POAmountScore": 100,
"POCountScore": 96
}
I want only the second result set. Please help.