Geospatial search question - document with multiple locations
Hi everyone, Suppose I have the following fields in my schema: And I index multiple latlon coordinates to a document. Then I do a geofilt search against my index. When I do that geofilt search, will ALL locations associated with that document have to be within the 'circle' produced by geofilt, or will only ONE? Example: doc1: { ... latlon:-20,30 latlon:140,-70 ... } Will the query fq={!geofilt p=-20.1,30.1 sfield=latlon d=150} match doc1 because the point -20,30 is within the query? Or will it not because even though the point -20,30 is within the query, the point 140,-70 is not? Thanks much! Tim
Re: mlt and document boost
One workaround is to use the 'important terms' feature to grab the query generated by the MLT handler, then parse that list into your own solr query to use through a standard search handler. That way, you can get the same results as if you used the MLT handler, and you can also use filter querying, highlighting, etc. Note: I am currently running a Solr 5.0.0 Single-Core installation On Thu, Dec 24, 2015 at 11:57 AM, Upayavira wrote: > Which morelikethis are you using? Handler, SearchComponent or > QueryParser? > > You should be a able to wrap the mlt query parser with the boost query > parser with no problem. > > Upayavira > > On Thu, Dec 24, 2015, at 05:18 AM, Binoy Dalal wrote: > > Have you tried applying the boosts to individual fields with mlt.qf? > > Optionally, you could get the patch that is on jira and integrate it into > > your code if you're so inclined. > > > > On Thu, 24 Dec 2015, 03:17 CrazyDiamond wrote: > > > > > So no way to apply boost to mlt or any other way to change order of > > > document > > > in mlt result? also may be there is a way to make to mlt query at > once and > > > merge. > > > > > > > > > > > > -- > > > View this message in context: > > > > http://lucene.472066.n3.nabble.com/mlt-and-document-boost-tp4246522p4247154.html > > > Sent from the Solr - User mailing list archive at Nabble.com. > > > > > -- > > Regards, > > Binoy Dalal >
NPE when executing clustering query search
Hi everyone, I am trying to execute a clustering query to my single-core master-slave solr setup and it is returning a NullPointerException. I checked the line in the source code where it is being thrown, and it looks like the null object is some sort of 'filt' object, which doesn't make sense. Below is the query, my schema, solrconfig, and the exception. If anyone could please help that would be great! Thank you! QUERY: 1510649 [qtp1855032000-20] INFO org.apache.solr.core.SolrCore û [collection1] webapp=/solr path=/clustering params{ mlt.minwl=3& mlt.boost=true& mlt.fl=textpropertymlt& sort=score+desc& carrot.snippet=impnoteplain& mlt.mintf=1& qf=concept_name& mlt.interestingTerms=details& wt=javabin& clustering.engine=lingo& version=2& rows=500& mlt.mindf=2& debugQuery=true& fl=id,concept_name,impnoteplain& start=0& q=id:567065dc658089be9f5c2c0d5670653d658089be9f5c2ae2& carrot.title=concept_name& clustering.results=true& qt=/clustering& fq=storeid:5670653d658089be9f5c2ae2& fq={!edismax+v%3D''+qf%3D'textpropertymlt'+mm%3D'2<40%25'}&carrot.url=id&clustering=true} status=500 QTime=217 ERROR: 1510697 [qtp1855032000-20] ERROR org.apache.solr.servlet.SolrDispatchFilter û null:java.lang.NullPointerException at org.apache.solr.search.QueryResultKey.(QueryResultKey.java:53) at org.apache.solr.search.SolrIndexSearcher.getDocListC(SolrIndexSearcher.java:1416) at org.apache.solr.search.SolrIndexSearcher.search(SolrIndexSearcher.java:586) at org.apache.solr.handler.component.QueryComponent.process(QueryComponent.java:511) at org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:235) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:144) at org.apache.solr.core.RequestHandlers$LazyRequestHandlerWrapper.handleRequest(RequestHandlers.java:291) at org.apache.solr.core.SolrCore.execute(SolrCore.java:2006) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:777) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:413) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:204) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1419) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:455) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1075) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:384) at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1009) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:255) at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:154) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) at org.eclipse.jetty.server.Server.handle(Server.java:368) at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) at org.eclipse.jetty.server.BlockingHttpConnection.handleRequest(BlockingHttpConnection.java:53) at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:942) at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1004) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:640) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235) at org.eclipse.jetty.server.BlockingHttpConnection.handle(BlockingHttpConnection.java:72) at org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:264) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) at java.lang.Thread.run(Unknown Source) SCHEMA.XML: c SOLR CONFIG.XML: clustering
Query to count matching terms and disable 'coord' multiplication
Hello everyone, I have two questions 1) Is there a way to query solr to rank results based purely on the amount of terms in the query which are contained in the document? Example: doc1: 'foo bar poo car foo' q1: 'foo, car, two, start' score(doc1, q1) = 2 (since both foo and car both occur in doc1 - never mind that foo occurs twice) This is also the numerator in the coord query 2) Is there a way to disable the 'coord' and 'query norm' multiplication of query results all together?
NPE when Faceting with MoreLikeThis handler in Solr 5.1.0
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at org.apache.solr.request.SimpleFacets.getHeatmapCounts(SimpleFacets.java:1555) at org.apache.solr.request.SimpleFacets.getFacetCounts(SimpleFacets.java:284) at org.apache.solr.handler.MoreLikeThisHandler.handleRequestBody(MoreLikeThisHandler.java:233) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:143) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1984) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:829) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:446) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:220) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1419) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:455) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1075) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:384) at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1009) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:255) at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:154) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) at org.eclipse.jetty.server.Server.handle(Server.java:368) at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) at org.eclipse.jetty.server.BlockingHttpConnection.handleRequest(BlockingHttpConnection.java:53) at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:942) at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1004) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:640) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235) at org.eclipse.jetty.server.BlockingHttpConnection.handle(BlockingHttpConnection.java:72) at org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:264) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) at java.lang.Thread.run(Thread.java:745) Query: qt=/mlt& q=id:545dbb57b54c2403f286050e546dcdcab54cf2d074e5a2f7& mlt.mindf=5& mlt.mintf=1& mlt.minwl=3& mlt.boost=true& fq=storeid:546dcdcab54cf2d074e5a2f7& mlt.fl=overview_mlt,abstract_mlt,description_mlt,company_profile_mlt,bio_mlt& mlt.interestingTerms=details& fl=conceptid,score &sort=score desc& start=0& rows=2& facet=true& facet.field=tags& facet.field=locations& facet.mincount=1& facet.method=enum& facet.limit=-1& facet.sort=count Schema.xml(relevant parts): solrconfig.xml(relevant parts):
NPE when Faceting with MoreLikeThis handler in Solr 5.1.0
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at org.apache.solr.request.SimpleFacets.getHeatmapCounts(SimpleFacets.java:1555) at org.apache.solr.request.SimpleFacets.getFacetCounts(SimpleFacets.java:284) at org.apache.solr.handler.MoreLikeThisHandler.handleRequestBody(MoreLikeThisHandler.java:233) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:143) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1984) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:829) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:446) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:220) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1419) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:455) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1075) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:384) at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1009) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:255) at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:154) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) at org.eclipse.jetty.server.Server.handle(Server.java:368) at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) at org.eclipse.jetty.server.BlockingHttpConnection.handleRequest(BlockingHttpConnection.java:53) at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:942) at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1004) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:640) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235) at org.eclipse.jetty.server.BlockingHttpConnection.handle(BlockingHttpConnection.java:72) at org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:264) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) at java.lang.Thread.run(Thread.java:745) Query: qt=/mlt& q=id:545dbb57b54c2403f286050e546dcdcab54cf2d074e5a2f7& mlt.mindf=5& mlt.mintf=1& mlt.minwl=3& mlt.boost=true& fq=storeid:546dcdcab54cf2d074e5a2f7& mlt.fl=overview_mlt,abstract_mlt,description_mlt,company_profile_mlt,bio_mlt& mlt.interestingTerms=details& fl=conceptid,score &sort=score desc& start=0& rows=2& facet=true& facet.field=tags& facet.field=locations& facet.mincount=1& facet.method=enum& facet.limit=-1& facet.sort=count Schema.xml(relevant parts): solrconfig.xml(relevant parts):
NPE with faceting query on MoreLikeThis handler
Hi everyone, Recently I upgraded to solr 5.1.0. When trying to generate facets using the more like this handler, I now get a a NullPointerException. I never got this exception while using Solr 4.10.0 Details are below: Stack Trace: at org.apache.solr.request.SimpleFacets.getHeatmapCounts(SimpleFacets.java:1555) at org.apache.solr.request.SimpleFacets.getFacetCounts(SimpleFacets.java:284) at org.apache.solr.handler.MoreLikeThisHandler.handleRequestBody(MoreLikeThisHandler.java:233) at org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:143) at org.apache.solr.core.SolrCore.execute(SolrCore.java:1984) at org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:829) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:446) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:220) at org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1419) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:455) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:137) at org.eclipse.jetty.security.SecurityHandler.handle(SecurityHandler.java:557) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:231) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1075) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:384) at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1009) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:255) at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:154) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) at org.eclipse.jetty.server.Server.handle(Server.java:368) at org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:489) at org.eclipse.jetty.server.BlockingHttpConnection.handleRequest(BlockingHttpConnection.java:53) at org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:942) at org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1004) at org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:640) at org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235) at org.eclipse.jetty.server.BlockingHttpConnection.handle(BlockingHttpConnection.java:72) at org.eclipse.jetty.server.bio.SocketConnector$ConnectorEndPoint.run(SocketConnector.java:264) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) at java.lang.Thread.run(Thread.java:745) Query: qt=/mlt& q=id:545dbb57b54c2403f286050e546dcdcab54cf2d074e5a2f7& mlt.mindf=5& mlt.mintf=1& mlt.minwl=3& mlt.boost=true& fq=storeid:546dcdcab54cf2d074e5a2f7& mlt.fl=overview_mlt,abstract_mlt,description_mlt,company_profile_mlt,bio_mlt& mlt.interestingTerms=details& fl=conceptid,score &sort=score desc& start=0& rows=2& facet=true& facet.field=tags& facet.field=locations& facet.mincount=1& facet.method=enum& facet.limit=-1& facet.sort=count Schema.xml(relevant parts): solrconfig.xml(relevant parts):
Cannot use Phrase Queries in eDisMax and filtering
I am writing a search bar application with Solr which I'd like to have the following two features: phrase matching for user queries - results which match user phrase are boosted. Field faceting based on 'tags' field. When I execute this query: q=steve jobs& fq=storeid:527bd613e4b0564cc755460a& sort=score desc& start=50& rows=2& fl=*,score& qt=/query& defType=edismax& pf=concept_name^15 note_text^5 file_text^2.5& pf3=1& pf2=1& ps=1& group=true& group.field=conceptid& group.limit=10& group.ngroups=true The phrase boosting feature operates correctly and boosts results which closer match the phrase query "Steve Jobs". As an example, the concept with concept_name="Steve Jobs" has a score of ~3.96 in the results of this query. However, when I execute the query after the user has selected a facet field (The facet fields are bought up from a seperate query) and execute the following query: q=steve jobs& fq=storeid:527bd613e4b0564cc755460a& fq=tag:Person& sort=score desc& start=0& rows=50& fl=*,score& qt=/query& defType=edismax& pf=concept_name^15 note_text^5 file_text^2.5& pf3=1& pf2=1& ps=1& group=true& group.field=conceptid& group.limit=10& group.ngroups=true The phrase boosting does not work, even though the facet filtering does. The concept with concept_name="Steve Jobs" has a score of ~0.2 in the results of this query. I'm not sure if this is a bug, but if it is not can someone point me to the relevant documentation that will help me fix this issue? All queries were written using the SolrJ Library. I also tried searching the string "Steve Jobs" and it returned the correct results (The with concept_name "Steve Jobs" was returned highest)
Re: Cannot use Phrase Queries in eDisMax and filtering
That was a typo in the email I did not actually send the query with a start param of 50. I sent it with a start param of 0, I just verified. Sorry for the mistake. On Mon, Nov 3, 2014 at 1:41 PM, Ramzi Alqrainy wrote: > The results are different, because you need to set "start" parameter 0 > instead of 50 in the first query (after filtration ) with same rows value > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Cannot-use-Phrase-Queries-in-eDisMax-and-filtering-tp4167302p4167329.html > Sent from the Solr - User mailing list archive at Nabble.com. >
Re: Cannot use Phrase Queries in eDisMax and filtering
It is of type string. On Mon, Nov 3, 2014 at 2:29 PM, Ramzi Alqrainy wrote: > I tried to produce your case in my machine with below queries, but > everything > worked fine with me. I just want to ask you a question what is the field > type of "tag" field ? > > q=bmw& > fl=score,*& > wt=json& > fq=city_id:59& > qt=/query& > defType=edismax& > pf=title^15%20discription^5& > pf3=1& > pf2=1& > ps=1& > qroup=true& > group.field=member_id& > group.limit=10& > sort=score desc& > group.ngroups=true > > > > > q=bmw& > fl=score,*& > wt=json& > fq=city_id:59& > qt=/query& > defType=edismax& > pf=title^15%20discription^5& > pf3=1& > pf2=1& > ps=1& > qroup=true& > group.field=member_id& > group.limit=10& > group.ngroups=true& > sort=score desc& > fq=category_id:1777 > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Cannot-use-Phrase-Queries-in-eDisMax-and-filtering-tp4167302p4167338.html > Sent from the Solr - User mailing list archive at Nabble.com. >
Minimum Term Matching in More Like This Queries
Hi! I'm fairly new to Solr. Is there a feature which enforces minimum term matching for MLT Queries? More precisely, that is, a document will match the MLT query if and only if at least x terms in the query are found in the document, with x defined by the user. I could not find such a feature in the documentation, and switching to the edismax query parser and using the 'mm' parameter does not work for me. Thanks!
LUCENE-2899 patch will not compile
After I applied the LUCENE-2899.patch file to lucene-solr 4.10.2 release I tried to run an ant compile persuant to the following directions under 'instillation' : https://wiki.apache.org/solr/OpenNLP And I received the following error indicating a dependency is missing - how do I find that dependency? : ivy-configure: [ivy:configure] :: loading settings :: file = C:\Users\thearn\Documents\GitHub\lucene-solr-lucene_solr_4_10_2\lucene\ivy-settings.xml resolve: [ivy:retrieve] [ivy:retrieve] :: problems summary :: [ivy:retrieve] ERRORS [ivy:retrieve] requested configuration not found in org.apache.solr#opennlp;working@thearn: [ 'compile' ] [ivy:retrieve] [ivy:retrieve] :: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS BUILD FAILED C:\Users\thearn\Documents\GitHub\lucene-solr-lucene_solr_4_10_2\build.xml:119: The following error occurred while executing this line: C:\Users\thearn\Documents\GitHub\lucene-solr-lucene_solr_4_10_2\solr\common-build.xml:453: The following error occurred while executing this line: C:\Users\thearn\Documents\GitHub\lucene-solr-lucene_solr_4_10_2\solr\common-build.xml:438: The following error occurred while executing this line: C:\Users\thearn\Documents\GitHub\lucene-solr-lucene_solr_4_10_2\solr\contrib\contrib-build.xml:52: impossible to resolve dependencies: java.lang.IllegalArgumentException: requested configuration not found in org.apache.solr#opennlp;working@thearn: [ 'compile' ] at org.apache.ivy.core.resolve.ResolveEngine.getDependencies(ResolveEngine.java:550)
Hit Highlighting and More Like This
Hi all, I'm fairly new to Solr. It seems like it should be possible to enable the hit highlighting feature and more like this feature at the same time, with the key words from the MLT query being the terms highlighted. Is this possible? I am trying right now to do this, but I am not having any snippets returned to me. Thanks!