Hello,

Thanks for answering.

The unit test does not bypass the newSearcher part when it works.

For the record (for others who may have the same problem), you have to
implement the same function as in AbstractSolrEventListener

protected NamedList<Object> addEventParms(
      SolrIndexSearcher currentSearcher, NamedList<Object> nlst) {
    NamedList<Object> result = new NamedList<>();
    result.addAll(nlst);
    if (currentSearcher != null) {
      result.add(EventParams.EVENT, EventParams.NEW_SEARCHER);
    } else {
      result.add(EventParams.EVENT, EventParams.FIRST_SEARCHER);
    }
    return result;
  }

Best regards



Le mar. 24 oct. 2023 à 17:06, Mikhail Khludnev <m...@apache.org> a écrit :

> I suppose a test may bypass some configs or stages.
> I think the default config shipped with distro has a listener configured
> and we can see that it works in bootstrap logs.
>
> On Tue, Oct 24, 2023 at 3:03 PM elisabeth benoit <
> elisaelisael...@gmail.com>
> wrote:
>
> > Hello,
> >
> > We have a solr custom plugin that we are actually migrating from solr
> 7.3.1
> > to solr 9.2.1.
> >
> > In our solrconfig.xml we have the following line:
> >
> >
> > <valueSourceParser name="stopwordsw"
> > class="com.cie.lbs.solr.search.function.StopWordSubtypeValueSourceParser"
> > stopwords="le;la;les;"
> > startswith="3"
> > />
> >
> > The values stopwords and startswith are defined in solrconfig and we read
> > those values in the newSearcher function of a class implementing
> > SolrEventListener.
> >
> > public void newSearcher(SolrIndexSearcher newSearcher,
> > SolrIndexSearcher currentSearcher) {
> >     SolrConfig config = newSearcher.getCore().getSolrConfig();
> >     String functionName = "//valueSourceParser[@name='" + this.name +
> > "']";
> >     String[] stopWords = config.get(functionName +
> > "/@stopwords").txt().split(";") ;
> >     StopWordSubtypeLoader.startsWithValue = Integer.parseInt(config.get(
> >           functionName + "/@startswith").txt());
> >     StopWordSubtypeLoader.stopWords = new
> > HashSet<String>(Arrays.asList(stopWords));
> >     LOGGER.info("startsWithValue = " +
> > StopWordSubtypeLoader.startsWithValue);
> >     LOGGER.info("stopwords = " + String.join(",",
> > StopWordSubtypeLoader.stopWords));
> > }
> >
> > This was working in solr 7.3.1 but is not working in solr 9.2.1. When I
> put
> > a break point in newSearcher function in a unit test, it never gets
> there,
> > as if newSearcher is not called.
> >
> > Did something change? I cant find an exemple of a similar case with solr
> 9.
> >
> > Best regards,
> > Elisabeth
> >
>
>
> --
> Sincerely yours
> Mikhail Khludnev
>

Reply via email to