Take the community feedback survey now.

Find indexing causing issues.

Vote:
 

Hello All ,

 

I have a scenario where - i have some Ecom products which is listed on the sites , but when i run the search and navigation index job after that .
the prodcuts goes missing or gets unlisted in that category page .
it happends only for specific language not for all .
but when i go to that categroy page and do any changes and publish the page then the product start coming on to the page.

i dont get what is the exact issue.

Please suggest you resolutions and opinions to avoid this scenario.

#340638
Oct 13, 2025 6:57
Vote:
 

If you implemented your own convention for indexing Commerce items then you'll need to modify the GetTimestamp to be in the future. Otherwise the Search and Navigation job will delete the commerce entry from the FIND index.

conventionBuilder.ExcludeField(x => x.GetTimestamp());
conventionBuilder.IncludeField(x => x.GetTimestamp(true));

public static DateTime GetTimestamp(this MyCommerceCategory content, bool _)
{
    return DateTime.Now.AddYears(100);
}
#340773
Oct 15, 2025 14:33
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.