Re: Restrict access to admin interface by IP address in Solr 7.7.2

2020-03-11 Thread Jan Høydahl
That should still work if you follow Jetty’s procedures for the version of Jetty you’re at. In 8.5 this will be much simpler: https://issues.apache.org/jira/browse/SOLR-14136 Jan > 11. mar. 2020 kl. 20:39 skrev Ryan W : > > What options do I have for restricting access to the admin UI by IP >

Graph Parser Bug

2020-03-11 Thread sambasivarao giddaluri
Hi All , i think this is bug in graph query parser if we pass additional brackets it throws parser exception and this is blocking our project can anyone suggest how to handle we are using solr 8.2. ex: ({!graph from=parentId to=parentId traversalFilter='type:parent' returnRoot=false}(childId.name

RE: No files to download for index generation

2020-03-11 Thread Oakley, Craig (NIH/NLM/NCBI) [C]
I wanted to ask *again* whether anyone has any insight regarding this message There seem to have been several people asking the question on this forum (Markus Jelsma on 8/23/19, Akreeti Agarwal on 12/27/19 and Vadim Ivanov on 12/29/19) The only response I have seen was five words from Erick Eri

Restrict access to admin interface by IP address in Solr 7.7.2

2020-03-11 Thread Ryan W
What options do I have for restricting access to the admin UI by IP address? In Solr 6.x, this could be done with an IPAccessHandler in jetty.xml, but this doesn't seem to work in Solr 7.x. Is there some other way to do it? Thanks!

Re: "SolrCore Initialization Failures" in the Solr's current UI, but not in the original UI

2020-03-11 Thread Ryan W
I upgraded to v7.7.2 and am not having this issue anymore. On Mon, Mar 9, 2020 at 10:04 AM Ryan W wrote: > I am using v6.6.6, which is the most recent release in the v6 branch, and > is the branch commonly used with my app. I have tried on Chrome, Firefox > and Internet Explorer, and I see the

Re: Sorting on an empty filter

2020-03-11 Thread Stephen Lewis Bianamara
Hi Folks, Has anyone had a chance to consider this question yet? Thanks! Stephen On Tue, Mar 3, 2020 at 2:28 PM Stephen Lewis Bianamara < stephen.bianam...@gmail.com> wrote: > Hi SOLR Community, > > I've observed while hosting a SOLR 6.6 installation that if I issue a > query where the filter q

Index-performance degrade when using NestPathField

2020-03-11 Thread Marvin Bredal Lillehaug
Hi! We have a index with about fifty million documents with five child documents in average. The schema has been a _root_-only schema for some time, but we now tried changing to _nest_path_/NestPathField. When reindexing the data with the new schema it takes almost twice as long to index all docume

Re: Atomic Update and Optimization and segments

2020-03-11 Thread Erick Erickson
ExpungeDelete only deletes segments with > 10% deleted documents. Since you’re using Solr 8.4, you can use an optimize and that’ll get rid of all your documents. However, none of this is really relevant if you only change a single doc. Deleting a field only affects that single document, actuall

Where fq, field sort and rerank query, the score of rerank is not correct

2020-03-11 Thread Dawn
GetDocListNC method in the SolrIndexSearcher class, Query is converted to BooleanQuery when fq queries are available. Has a call query instanceof RankQuery below, which will never be true. The score of rerank is not correct. Do you need to add a loop to the query type? ProcessedFilter pf = ge

Re: JSP support not configured in Solr 8.3.0

2020-03-11 Thread Jörn Franke
It is better to have a dedicated frontend for Solr on a dedicated server. For security reasons, Solr becomes more and more locked up and it is also discouraged to put own web applications on it. > Am 11.03.2020 um 10:03 schrieb vishal patel : > >  > I put the JSP in \server\solr-webapp\webapp

JSP support not configured in Solr 8.3.0

2020-03-11 Thread vishal patel
I put the JSP in \server\solr-webapp\webapp\test.jsp. When I hit in browser using http://172.178.170.175:7999/solr/test.jsp, I got HTTP ERROR 500 Problem accessing /solr/mem.jsp. Reason:JSP support not configured. Is any jar required in \server\lib\? OR any configuration for that? Regards, Vis

Re: Fw: SolrException in Solr 6.1.0

2020-03-11 Thread Paras Lehana
Hi Vishal, Let's have a quick look into your logs. org.apache.solr.common.SolrException: Exception writing document id > WF204878828_42970103 to the index; possible analysis error. If you were indexing something, check the documents syntax. Caused by: java.nio.file.FileSystemException: > E:\

Re: Solr range search queries

2020-03-11 Thread Paras Lehana
Hi Niharika, Range queries for string fields would work lexicographically and not numeric I think. Read: https://lucene.apache.org/solr/guide/6_6/the-standard-query-parser.html#TheStandardQueryParser-RangeSearches . If this is the case, [2 TO 5] will include 200 and [2 TO 20] will not include 19.