Try our conversational search powered by Generative AI!

Using unified search - results are coming back with no urls intermittently

Vote:
 

Hi all,

We are using the latest version of EPiServer and EPiServer find.

We have configured our search to use the unified search and everything has been working well.

However, we have noticed today that the search results are now coming back with null URLs.  This is very stragne behaviour as it has been working fine even up until this morning.

Is there any reason for this?

Thanks in advance,

Adam

#119704
Apr 01, 2015 17:34
Vote:
 

Looking through the logs, I have found that there have been errors describing the below:

[318] ERROR EPiServer.Shell.UI.Rest.SearchResultStore: Search provider EPiServer.Find.Cms.SearchProviders.EnterprisePageSearchProviderthrew an exception when searching for "test"

ERROR EPiServer.Shell.UI.Rest.SearchResultStore: EPiServer.Core.ContentNotFoundException: Content with id 12345 was not found
   at EPiServer.Core.DefaultContentLoader.Get[T](ContentReference contentLink, LoaderOptions loaderOptions)
   at EPiServer.DataFactory.Get[T](ContentReference contentLink, LoaderOptions loaderOptions)
   at System.Linq.Enumerable.<>c__DisplayClass12`3.<CombineSelectors>b__11(TSource x)
   at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
   at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
   at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
   at EPiServer.Shell.UI.Rest.SearchResultStore.Get(SearchResultModel searchResultModel, ItemRange range)

Why would it all of a sudden not be able to find the content?

Just to add, here is the query we are using:

var result = SearchClient.Instance.UnifiedSearchFor(q)
                .UsingSynonyms()
                .WithAndAsDefaultOperator()
                .ApplyBestBets()
                .Track()
                .Skip((page - 1) * pageSize)
                .Take(pageSize);


#119707
Edited, Apr 01, 2015 17:57
Vote:
 

Did you ever find the answer to this by any chance?

We're having the same problem now with the newest EPiServer and EPiServer Find. URL's turn up null, but the rest of the content seems to be there.

#121255
May 05, 2015 18:46
Vote:
 

Can it be that the content has been deleted from the CMS but not in the index?

what happens if you try to open the content with the id in the error message ?

#121257
May 05, 2015 19:45
Vote:
 

Hi Bar10dr,

The only thing that seemed to get this working again was to clear the index and re-index the site (not ideal I know).

This has only happened once though and at the time we were sharing an index in two different environments which is not recommended.  EPiServer recommends using one index for each environment.

Hope this helps!

Thanks

Adam

#121286
May 06, 2015 9:48
Vote:
 

Adam, that is most likely the case, there is never good to share an index between two enviroments. We do it in development since we are many developers for one site and there it usually works but there can be some strange errors sometimes when data is updated for one developer and not for the others but it is updated in index.

#121288
May 06, 2015 10:02
Vote:
 

Same here. 
I get Url for normal content, but not for custom object. 

            SearchClient.Instance.Conventions.UnifiedSearchRegistry
                .Add<IntranetUser>()
                .ProjectTitleFrom<IntranetUser>(b => b.SearchTitle)
                .ProjectUrlFrom<IntranetUser>(b => b.SearchUrl)
                .ProjectImageUriFrom(b => new Uri(b.SearchImage))
                .ProjectTypeNameFrom(m => m.GetType().ToString());


Title is set. ImageUri is set. TypeName is set. Url is NOT set even though I know b.SearchUrl gets a value. I can see SearchUrl set in index. 

Also, if I use HitProjectionBuilder I get a message saying it's obsolete and I should use IndexProjectionBuilder instead. Could this have anything to do with the url problem? 

Like @bar10dr I use latest find and episerver.


EDIT: I've created a new index, but still get same result, so to re-index is not a solution for me atleast.

#121298
Edited, May 06, 2015 13:16
Vote:
 
#121302
May 06, 2015 14:02
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* 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.