edismax/boost: certain documents should be last

2011-10-28 Thread Paul
(I am using solr 3.4 and edismax.) In my index, I have a multivalued field named "genre". One of the values this field can have is "Citation". I would like documents that have a genre field of Citation to always be at the bottom of the search results. I've been experimenting, but I can't seem to

Re: edismax/boost: certain documents should be last

2011-10-31 Thread Paul
omething I don't get about queries. On Mon, Oct 31, 2011 at 10:08 AM, Erik Hatcher wrote: > Paul (*bows* to the NINES!) - > > If you literally want Citations always at the bottom regardless of other > relevancy, then perhaps consider indexing boolean top_sort as true for >

Re: edismax/boost: certain documents should be last

2011-10-31 Thread Paul
On Mon, Oct 31, 2011 at 10:41 AM, Erik Hatcher wrote: > Paul - look at debugQuery=true output to see why scores end up the way they > do.  Use the explainOther to hone in on a specific document to get it's > explanation.  The math'll tell you why it's working the way it

Re: edismax/boost: certain documents should be last

2011-10-31 Thread Paul
a score of 0.0045761107. Those two numbers are added together to get the total score. I tried putting a negative boost number in, but that isn't legal. Is there a way to express "genre does not equal Citation" as an optional parameter that I can boost? On Mon, Oct 31, 2011 a

Re: edismax/boost: certain documents should be last

2011-10-31 Thread Paul
(Sorry for so many messages in a row...) For the record, I figured out something that will work, although it is somewhat inelegant. My q parameter is now: (+content:notes -genre:Citation)^20 (+content:notes genre:Citation)^0.01 Can I improve on that? On Mon, Oct 31, 2011 at 5:52 PM, Paul

limiting the total number of documents matched

2010-07-14 Thread Paul
t seems particularly inefficient. I can't find any other way to do this, though. Thanks, Paul

Re: limiting the total number of documents matched

2010-07-14 Thread Paul
t; request your IDs to keep it snappy, then do a second query against the IDs > and sort by your other field. 1000 seems like a lot for that approach, but > who knows until you try it on your data. > > -Kallin Nagelberg > > > -Original Message- > From: Paul [mailto:p.

Re: limiting the total number of documents matched

2010-07-14 Thread Paul
sible to do a search with "score:[5 to *]"? It didn't work in my first attempt. On Wed, Jul 14, 2010 at 5:34 PM, Paul wrote: > I was hoping for a way to do this purely by configuration and making > the correct GET requests, but if there is a way to do it by creating a > cus

autocomplete: case-insensitive and middle word

2010-08-17 Thread Paul
not the middle name. How can I get the matches of the "text_lu" analyzer, but get the hints like the "string" analyzer? Thanks, Paul

Re: autocomplete: case-insensitive and middle word

2010-08-18 Thread Paul
Here's my solution. I'm posting it in case it is radically wrong; I hope someone can help straighten me out. It seems to work fine, and seems fast enough. In schema.xml:

What is a "409 version conflict" error [solr 4.1]?

2013-01-28 Thread Paul
I've got a process that is replacing about 180K documents that are all similar (I'm actually just adding one field to each of them). This is mostly working fine, but occasionally (perhaps 100 times), I get this error: 409 Conflict Error: {'responseHeader'=>{'status'=>409,'QTime'=>1},'error'=>{'msg

Re: What is a "409 version conflict" error [solr 4.1]?

2013-01-28 Thread Paul
at 4:05 PM, Paul wrote: > I've got a process that is replacing about 180K documents that are all > similar (I'm actually just adding one field to each of them). This is > mostly working fine, but occasionally (perhaps 100 times), I get this error: > > 409 Conflict > Erro

Re: compare two shards.

2013-02-14 Thread Paul
I do a brute-force regression test where I read all the documents from shard 1 and compare them to documents in shard 2. I had to have all the fields stored to do that, but in my case that doesn't change the size of the index much. So, in other words, I do a search for a page's worth of documents

Re: How to handle to run testcases in ruby code for solr

2012-02-18 Thread Paul
Are you asking how to test your own code, that happens to have a solr query somewhere in the middle of it? I've done this two ways: 1) You can mock the solr call by detecting that you are in test mode and just return the right answer. That will be fast. 2) Or you set up a second core with the nam

searching top matches of each facet

2012-02-29 Thread Paul
Let's say that I have a facet named 'subject' that contains one of: physics, chemistry, psychology, mathematics, etc I'd like to do a search for the top 5 documents in each category. I can do this with a separate search for each facet, but it seems like there would a way to combine the search.

Re: searching top matches of each facet

2012-03-01 Thread Paul
Test it to see if that is what you want. > > Thanks > Emmanuel > > > 2012/2/29 Paul : >> Let's say that I have a facet named 'subject' that contains one of: >> physics, chemistry, psychology, mathematics, etc >> >> I'd like to do a search

Re: score from two cores

2010-12-03 Thread Paul
On Fri, Dec 3, 2010 at 4:47 PM, Erick Erickson wrote: > But why do you have two cores in the first place? Is it really necessary or > is it just > making things more complex? I don't know why the OP wants two cores, but I ran into this same problem and had to abandon using a second core. My use c

Re: Improving Solr performance

2011-01-10 Thread Paul
> I see from your other messages that these indexes all live on the same > machine. > You're almost certainly I/O bound, because you don't have enough memory for > the > OS to cache your index files.  With 100GB of total index size, you'll get best > results with between 64GB and 128GB of total R

verifying that an index contains ONLY utf-8

2011-01-12 Thread Paul
We've created an index from a number of different documents that are supplied by third parties. We want the index to only contain UTF-8 encoded characters. I have a couple questions about this: 1) Is there any way to be sure during indexing (by setting something in the solr configuration?) that th

Re: verifying that an index contains ONLY utf-8

2011-01-13 Thread Paul
Thanks for all the responses. CharsetDetector does look promising. Unfortunately, we aren't allowed to keep the original of much of our data, so the solr index is the only place it exists (to us). I do have a java app that "reindexes", i.e., reads all documents out of one index, does some transfor

last item in results page is always the same

2011-02-16 Thread Paul
1723200600 should have been returned as the 181,499th item. Is this a known solr bug or is there something subtle going on? Thanks, Paul

Re: last item in results page is always the same

2011-02-17 Thread Paul
Thanks, going to update now. This is a system that is currently deployed. Should I just update to 1.4.1, or should I go straight to 3.0? Does 1.4 => 3.0 require reindexing? On Wed, Feb 16, 2011 at 5:37 PM, Yonik Seeley wrote: > On Wed, Feb 16, 2011 at 5:08 PM, Paul wrote: >> Is

Search failing for matched text in large field

2011-03-23 Thread Paul
I'm using solr 1.4.1. I have a document that has a pretty big field. If I search for a phrase that occurs near the start of that field, it works fine. If I search for a phrase that appears even a little ways into the field, it doesn't find it. Is there some limit to how far into a field solr will

Re: Search failing for matched text in large field

2011-03-23 Thread Paul
Ah, no, I'll try that now. What is the disadvantage of setting that to a really large number? I do want the search to work for every word I give to solr. Otherwise I wouldn't have indexed it to begin with. On Wed, Mar 23, 2011 at 11:15 AM, Sascha Szott wrote: > Hi Paul, > &g

Re: Search failing for matched text in large field

2011-03-23 Thread Paul
won't get bored waiting? Is there some optimization of this coming in solr 3.0? On Wed, Mar 23, 2011 at 12:15 PM, Sascha Szott wrote: > Hi Paul, > > did you increase the value of the maxFieldLength parameter in your > solrconfig.xml? > > -Sascha > > On 23.03.2011 17:05

Re: Search failing for matched text in large field

2011-03-23 Thread Paul
repeat the search with highlighting that can take its time to finish. (I, too, have seen random really long response times that seem to be related to not enough RAM, but this isn't the problem because the results here are repeatable.) On Wed, Mar 23, 2011 at 2:30 PM, Sascha Szott wrote: >

Best practice for rotating solr logs

2011-03-31 Thread Paul
start process are going to return errors. The other way to do it is to use copytruncate but that will cause any requests that come in during the time that the file is being truncated to not appear in the log. How do you set up your logrotate file? Thanks, Paul

ConcurrentLRUCache$Stats error

2011-04-05 Thread Paul
I'm using solr 1.4.1 and just noticed a bunch of these errors in the solr.log file: SEVERE: java.util.concurrent.ExecutionException: java.lang.NoSuchMethodError: org.apache.solr.common.util.ConcurrentLRUCache$Stats.add(Lorg/apache/solr/common/util/ConcurrentLRUCache$Stats;)V They appear to happen

Searching for escaped characters

2011-04-28 Thread Paul
&\w{1,6}; To find any escaped sequences that might have slipped through. Is this possible? I have indexed these fields with text_lu, which looks like this: Thanks, Paul

applying FastVectorHighlighter truncation patch to solr 3.1

2011-05-17 Thread Paul
I'm having this issue with solr 3.1: https://issues.apache.org/jira/browse/LUCENE-1824 It looks like there is a patch offered, but I can't figure out how to apply it. What is the easiest way for me to get this fix? I'm just using the example solr with changed conf xml files. Is there a file some

auto suggestion with text_en field

2011-08-26 Thread Paul
Sorry if this has been asked before, but I couldn't seem to find it... I've got a fairly simple index, and I'm searching on a field of type text_en, and the results are good: I search for "computer" and I get back hits for "computer", "computation", "computational", "computing". I also want to cr

Setting up two cores in solr.xml for Solr 4.0

2012-09-04 Thread Paul
I'm trying to set up two cores that share everything except their data. (This is for testing: I want to create a parallel index that is used when running my testing scripts.) I thought that would be straightforward, and according to the documentation, I thought the following would work:

Re: Setting up two cores in solr.xml for Solr 4.0

2012-09-04 Thread Paul
By trial an error, I found that you evidently need to put that property inline, so this version works: Is the documentation here in error? http://wiki.apache.org/solr/CoreAdmin On Tue, Sep 4, 2012 at 2:50 PM, Paul wrote: > I'm trying to set up two cores that share everythin

Re: Setting up two cores in solr.xml for Solr 4.0

2012-09-05 Thread Paul
I don't think I changed by solrconfig.xml file from the default that was provided in the example folder for solr 4.0. On Tue, Sep 4, 2012 at 3:40 PM, Chris Hostetter wrote: > > : > > I'm pretty sure what you hav above tells solr that core MYCORE_test it > should use the instanceDir MYCORE but

Still see document after delete with commit in solr 4.0

2012-09-05 Thread Paul
I've recently upgraded to solr 4.0 from solr 3.5 and I think my delete statement used to work, but now it doesn't seem to be deleting. I've been experimenting around, and it seems like this should be the URL for deleting the document with the uri of "network_24". In a browser, I first go here: ht

Re: Still see document after delete with commit in solr 4.0

2012-09-05 Thread Paul
ld does not > exist in schema". > > See: > https://issues.apache.org/jira/browse/SOLR-3432 > > -- Jack Krupansky > > -Original Message- From: Paul > Sent: Wednesday, September 05, 2012 10:05 AM > To: solr-user > Subject: Still see document after delete wit

Re: Still see document after delete with commit in solr 4.0

2012-09-05 Thread Paul
Actually, I didn't technically "upgrade". I downloaded the new version, grabbed the example, and pasted in the fields from my schema into the new one. So the only two files I changed from the example are schema.xml and solr.xml. Then I reindexed everything from scratch so there was no old index in

facet by "in the past" and "in the future"

2012-10-18 Thread Paul
I have some documents that contain a date field. I'd like to set up a facet that groups the dates in two buckets: 1) before today, 2) today and in the future. It seems like I should be using range faceting, but I don't see how to set up the parameters. Is there another way to get what I want? The

Re: facet by "in the past" and "in the future"

2012-10-18 Thread Paul
t; > -Original Message- > From: Paul [mailto:p...@nines.org] > Sent: Thursday, October 18, 2012 5:28 PM > To: solr-user@lucene.apache.org > Subject: facet by "in the past" and "in the future" > > I have some documents that contain a date field. I'd like t

Re: If you could have one feature in Solr...

2010-02-24 Thread Paul
Limit the number of results when the results are sorted. In other words, if the results are sorted by name and there are 10,000 results, then there will be items of low relevancy mixed in with the results and it is hard for the user to find the relevant ones. If I could say, "give me no more than

Diagnosing solr timeout

2010-06-09 Thread Paul
Hi all, In my app, it seems like solr has become slower over time. The index has grown a bit, and there are probably a few more people using the site, but the changes are not drastic. I notice that when a solr search is made, the amount of cpu and ram spike precipitously. I notice in the solr lo

Re: Diagnosing solr timeout

2010-06-09 Thread Paul
>Have you looked at the garbage collector statistics? I've experienced this >kind of issues in the past and I was getting huge spikes when the GC was doing its job. I haven't, and I'm not sure what a good way to monitor this is. The problem occurs maybe once a week on a server. Should I run jstat

Enabling SSL on SOLR breaks my SQL Server connection

2019-05-23 Thread Paul
Hi, I have enabled HTTPS on my SOLR server and it works fine over HTTPS for interaction with SOLR via the browser such as for data queries and management actions. However, I now get an error when attempting to retrieve data from the SQL server for Indexing. The JDBC connection string has the para

Re: Enabling SSL on SOLR breaks my SQL Server connection

2019-05-23 Thread Paul
parameters. Cheers Paul On 5/23/2019 5:45 AM, Paul wrote: > unable to find > valid certification path to requested target This seems to be the root of your problem with the connection to SQL server. If I have all the context right, Java is saying it can't validate the certificate retu

Re: Enabling SSL on SOLR breaks my SQL Server connection

2019-05-24 Thread Paul
Ta - it works if I set trustCertificate=true so for now that will do for test. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Enabling SSL on SOLR breaks my SQL Server connection

2019-05-31 Thread Paul
SOLVED: Now implemented with a bespoke trust store set up for SOLR ... -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Configure mutual TLS 1.2 to secure SOLR

2019-06-07 Thread Paul
Hi, Can someone please outline how to use mutual TLS 1.2 with SOLR. Or, point me at docs/tutorials/other where I can read up further on this (version currently onsite is SOLR 7.6). Thanks Paul -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Basic Authentication in Standalone Configuration ?

2019-06-10 Thread Paul
Hi, I am not sure if Basic Authentication is possible in SOLR standalone configuration (version 7.6). I have a working SOLR installation using SSL. When following the docs I add options into solr.in.cmd, as in: SOLR_AUTH_TYPE="basic" SOLR_AUTHENTICATION_OPTS="-Dbasicauth=solr:SolrRocks" When I g

Re: Security Problems

2015-12-16 Thread Noble Paul
, unless assigned proper roles > 3) if a user is assigned the default “read” rule, and a collection adds a > custom “/myselect” handler, that one is unavailable until the user gets it > assigned > > -- > Jan Høydahl, search solution architect > Cominvent AS - www.cominvent.co

Re: Security Problems

2015-12-16 Thread Noble Paul
I have opened https://issues.apache.org/jira/browse/SOLR-8429 On Wed, Dec 16, 2015 at 9:32 PM, Noble Paul wrote: > I don't this behavior is intuitive. It is very easy to misunderstand > > I would rather just add a flag to "authentication" plugin section > which says &q

Re: API accessible without authentication even though Basic Auth Plugin is enabled

2015-12-22 Thread Noble Paul
A 5.3.2 release is coming up which will back port the fixes introduced in 5.4 On Dec 17, 2015 10:25 PM, "tine-2" wrote: > Noble Paul നോബിള്‍ नोब्ळ् wrote > > It works as designed. > > > > Protect the read path [...] > > Works like described in 5.

Re: Solr server not starting

2016-01-07 Thread Paul Hoffman
re. I check if it is running in the > processes list and it turns out it is NOT. Please help me to solve this > problem! > > Best regards, > > Agon This could be a permissions problem -- for example, perhaps you started it as root the first time and are now attempting to st

Re: URI is too long

2016-01-31 Thread Paul Libbrecht
How about using POST? paul > Salman Ansari <mailto:salman.rah...@gmail.com> > 31 January 2016 at 15:20 > Hi, > > I am building a long query containing multiple ORs between query terms. I > started to receive the following exception: > > The remote server returned a

Logging request times

2016-02-10 Thread McCallick, Paul
. Thanks, Paul McCallick Sr Manager Information Technology eCommerce Foundation

Re: Custom auth plugin not loaded in SolrCloud

2016-02-11 Thread Noble Paul
t; > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Custom-auth-plugin-not-loaded-in-SolrCloud-tp4245670p4248340.html > Sent from the Solr - User mailing list archive at Nabble.com. -- ----- Noble Paul

Re: Logging request times

2016-02-13 Thread McCallick, Paul
eisey" wrote: >On 2/10/2016 10:33 AM, McCallick, Paul wrote: >> We’re trying to fine tune our query and ingestion performance and would like >> to get more metrics out of SOLR around this. We are capturing the standard >> logs as well as the jetty request logs. The standa

Adding nodes

2016-02-13 Thread McCallick, Paul
use the core admin api to add the node to the collection. I would really like to see the second case behave more like the first. If I add a node to the cluster, it is automatically used as a replica for existing clusters without my having to do so. This would really simplify things. Paul

Re: Highlight brings the content from the first pages of pdf

2016-02-14 Thread Paul Libbrecht
This looks like the stored content is shortened. Can it be? Can you see that inside the docs? paul > Evert R. <mailto:evert.ra...@gmail.com> > 14 February 2016 at 11:26 > Hi There, > > I have a situation where started a techproducts, without any modification, > post a pdf

Re: Adding nodes

2016-02-14 Thread McCallick, Paul
out on the user. This can be challenging in an autoscale scenario. Thanks, Paul > On Feb 14, 2016, at 12:25 AM, Shawn Heisey wrote: > >> On 2/13/2016 6:01 PM, McCallick, Paul wrote: >> - When creating a new collection, SOLRCloud will use all available nodes for >> the

Re: Adding nodes

2016-02-14 Thread McCallick, Paul
collections api (ADDREPLICA), makes this very difficult. On 2/14/16, 8:19 AM, "Susheel Kumar" wrote: >Hi Paul, > >Shawn is referring to use Collections API >https://cwiki.apache.org/confluence/display/solr/Collections+API than Core >Admin API https://cwiki.apache.or

Re: Adding nodes

2016-02-14 Thread McCallick, Paul
d nodes to. Let me know if I'm making dangerous or uninformed assumptions, as I'm new to solr. Thanks, Paul > On Feb 14, 2016, at 10:35 AM, Susheel Kumar wrote: > > Hi Pual, > > > For Auto-scaling, it depends on how you are thinking to design and what/how >

Re: Need to move on SOlr cloud (help required)

2016-02-16 Thread Paul Borgermans
ng updates of your SolrCloud nodes Hth Paul > > On Tue, Feb 16, 2016 at 7:31 AM, Susheel Kumar > wrote: > > > In SolrJ, you would use CloudSolrClient which interacts with Zookeeper > > (which maintains Cluster State). See CloudSolrClient API. So that's how > > SolrJ would know which node is down or not. >

Solr won't start -- java.lang.ClassNotFoundException: org.eclipse.jetty.xml.XmlConfiguration

2016-03-15 Thread Paul Hoffman
I've been running Solr successfully until this morning, when I stopped it to pick up a change in my schema, and now it won't start up again. I've whittled the problem down to this: ---- # cd /home/paul/proj/b

Re: Solr won't start -- java.lang.ClassNotFoundException: org.eclipse.jetty.xml.XmlConfiguration

2016-03-15 Thread Paul Hoffman
On Tue, Mar 15, 2016 at 01:46:32PM -0600, Shawn Heisey wrote: > On 3/15/2016 1:34 PM, Paul Hoffman wrote: > > I've been running Solr successfully until this morning, when I stopped > > it to pick up a change in my schema, and now it won't start up again. > > I&

Re: Solr won't start -- java.lang.ClassNotFoundException: org.eclipse.jetty.xml.XmlConfiguration

2016-03-18 Thread Paul Hoffman
On Tue, Mar 15, 2016 at 07:58:21PM -0600, Shawn Heisey wrote: > On 3/15/2016 2:56 PM, Paul Hoffman wrote: > >> It sure looks like I started Solr from my blacklight project dir. > >> > >> Any ideas? Thanks, > >> > > You may need to get some help from t

Re: Indexing using CSV

2016-03-21 Thread Paul Hoffman
might be the hardest part -- CSV is not a file format, it's a hodgepodge. Paul. -- Paul Hoffman Systems Librarian Fenway Libraries Online c/o Wentworth Institute of Technology 550 Huntington Ave. Boston, MA 02115 (617) 442-2384 (FLO main number)

Delete by query using JSON?

2016-03-22 Thread Paul Hoffman
es that use an fq. Could someone post an example? Thanks in advance, Paul. -- Paul Hoffman Systems Librarian Fenway Libraries Online c/o Wentworth Institute of Technology 550 Huntington Ave. Boston, MA 02115 (617) 442-2384 (FLO main number)

Re: Delete by query using JSON?

2016-03-23 Thread Paul Hoffman
-- in my case, not only was I asking the wrong question, but I shouldn't even have had to ask the (right) question at all! Thanks again, everyone. Paul. -- Paul Hoffman Systems Librarian Fenway Libraries Online c/o Wentworth Institute of Technology 550 Huntington Ave. Boston, MA 02115 (617) 442-2384 (FLO main number)

Re: Delete by query using JSON?

2016-03-23 Thread Paul Hoffman
thought the query was wrong, but the example you pointed me to clued me in to the real problem: I had neglected to specify Content-Type: application.json (d'oh!). Paul. -- Paul Hoffman Systems Librarian Fenway Libraries Online c/o Wentworth Institute of Technology 550 Huntington Ave. Bost

Re: Regarding JSON indexing in SOLR 4.10

2016-03-30 Thread Paul Hoffman
s instead: for file in *.json; do curl 'http://localhost:8984/solr/update?commit=true' --data-binary "$file" -H 'Content-type:application/json' done Paul. -- Paul Hoffman Systems Librarian Fenway Libraries Online c/o Wentworth Institute of Technology 550 Huntington Ave. Boston, MA 02115 (617) 442-2384 (FLO main number)

Re: Basic auth

2015-07-22 Thread Noble Paul
>> >> >> -- >> View this message in context: >> http://lucene.472066.n3.nabble.com/Basic-auth-tp4218053p4218519.html >> Sent from the Solr - User mailing list archive at Nabble.com. >> -- - Noble Paul

Re: Basic auth

2015-07-27 Thread Noble Paul
own security.json + class/implementation to verify user/pass > should work today with 5.2, right? > > Thanks > Fadi > >> On 22 Jul 2015, at 14:33, Noble Paul wrote: >> >> Solr 5.3 is coming with proper basic auth support >> >> >> https://issue

Re: Basic auth

2015-07-30 Thread Noble Paul
out of > other things since I see many mails usually in consensus of not embedding and > rather want people to consider Solr as a stand-alone service, not sure why! > I'm probably getting out of context here. > > Regards > >> On 27 Jul 2015, at 13:17, Noble Paul

pre-loaded function-query?

2015-08-18 Thread Paul Libbrecht
an example somewhere? thanks Paul signature.asc Description: OpenPGP digital signature

Re: pre-loaded function-query?

2015-08-18 Thread Paul Libbrecht
ms)^boost-function Not exactly the same or? thanks Paul

Re: User Authentication

2015-08-24 Thread Noble Paul
. I’ve found some examples on user authentication on the Jetty side. > But they have failed. > > Does any one have a step by step example on authentication for the admin > screen? And a core? > > > Thanks > > Tom LeZotte > Health I.T. - Senior Product Developer > (p) 615-875-8830 > > > > > > > -- - Noble Paul

Re: SOLR 5.3

2015-08-24 Thread Noble Paul
> > > > -- > Arcadius Ahouansou > Menelic Ltd | Information is Power > M: 07908761999 > W: www.menelic.com > --- -- - Noble Paul

Re: User Authentication

2015-08-24 Thread Noble Paul
no. Most of it is in Solr 5.3 On Tue, Aug 25, 2015 at 12:48 AM, Steven White wrote: > Hi Noble, > > Is everything in the link you provided applicable to Solr 5.2.1? > > Thanks > > Steve > > On Mon, Aug 24, 2015 at 2:20 PM, Noble Paul wrote: > >> did you m

[ANNOUNCE] Apache Solr 5.3.0 released

2015-08-24 Thread Noble Paul
ing lists (http://lucene.apache.org/solr/discussion.html) -- - Noble Paul www.lucidworks.com

Re: [ANNOUNCE] Apache Solr 5.2.0 released

2015-08-24 Thread Noble Paul
sorry , screwed up the title On Tue, Aug 25, 2015 at 8:30 AM, Noble Paul wrote: > Solr is the popular, blazing fast, open source NoSQL search platform > from the Apache Lucene project. Its major features include powerful > full-text search, hit highlighting, faceted search, dynamic >

[ANNOUNCE] Apache Solr 5.2.0 released

2015-08-24 Thread Noble Paul
ing lists (http://lucene.apache.org/solr/discussion.html) -- - Noble Paul www.lucidworks.com

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-08-31 Thread Noble Paul
tion/json' -d '{"set-user": {"user" : “password" }}' >> >> Issue the following command to add permission to users >> curl -u solr:SolrRocks -H 'Content-type:application/json' -d '{ >> "set-user-role" : {"admin": ["search-user", "admin"]}}' >> http://localhost:8983/solr/admin/authorization >> curl -u solr:SolrRocks -H 'Content-type:application/json' -d '{ >> "set-user-role" : {"user": ["search-user"]}}' >> http://localhost:8983/solr/admin/authorization >> >> After executing the above, access to /mysearch is protected until I restart >> the Solr and Zookeeper instances. However, the admin UI is never protected >> like the Wiki page says it should be once activated. >> >> https://cwiki.apache.org/confluence/display/solr/Rule-Based+Authorization+Plugin >> >> <https://cwiki.apache.org/confluence/display/solr/Rule-Based+Authorization+Plugin> >> >> Why does the authentication and authorization plugin not stay activated >> after restart and why is the Admin UI never protected? Am I missing any >> steps? >> >> Thanks, >> Kevin -- - Noble Paul

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
I'm investigating why restarts or first time start does not read the security.json On Tue, Sep 1, 2015 at 1:00 PM, Noble Paul wrote: > I removed that statement > > "If activating the authorization plugin doesn't protect the admin ui, > how does one protect access to it

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
n't see > any plugin enabled even though security.json is already in zookeeper and then > after they are started and the security.json is uploaded again I see it > reconfigure to use the plugin. > > Thanks, > Kevin > >> On Aug 31, 2015, at 11:22 PM, Noble Paul wrote:

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
Looks like there is a bug in that . On start/restart the security.json is not loaded I shall open a ticket https://issues.apache.org/jira/browse/SOLR-8000 On Tue, Sep 1, 2015 at 1:01 PM, Noble Paul wrote: > I'm investigating why restarts or first time start does not read the > se

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
] > } > } > } > > Also tried adding the permission using the Authorization API, but no effect, > still isn’t protecting the Collections API from being invoked without a > username password. I do see in the Solr logs that it sees the updates &

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-02 Thread Noble Paul
ions aren’t working, but the one to the > request handler at the /browse path is. > > >> On Sep 1, 2015, at 11:03 PM, Noble Paul wrote: >> >> " However, after uploading the new security.json and restarting the >> web browser," >> >> The browser rememb

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-03 Thread Noble Paul
Both these are committed. If you could test with the latest 5.3 branch it would be helpful On Wed, Sep 2, 2015 at 5:11 PM, Noble Paul wrote: > I opened a ticket for the same > https://issues.apache.org/jira/browse/SOLR-8004 > > On Wed, Sep 2, 2015 at 1:36 PM, Kevin Lee wrote: &

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-04 Thread Noble Paul
json after startup of the Solr instances. If I shutdown and bring >> the instances back up, the security is no longer in place and I have to >> upload the security.json again for it to take effect. >> >> - Kevin >> >> > On Sep 3, 2015, at 10:29 PM, Noble Paul wr

Re: Strange interpretation of invalid ISO date strings

2015-09-06 Thread Paul Libbrecht
Just a word of warning: iso-8601, the date format standard, is quite big, to say the least, and I thus expect very few implementations to be complete.  I survived one such interoperability issue with Safari on iOS6. While they (and JS I think) claim iso-8601, it was not complete and fine grained

Re: How to secure Admin UI with Basic Auth in Solr 5.3.x

2015-09-10 Thread Noble Paul
sic Authentification? > > Thank you for any help -- ----- Noble Paul

Re: How to secure Admin UI with Basic Auth in Solr 5.3.x

2015-09-11 Thread Noble Paul
ectly running system with solr > 3.x and one core and now taking it to solr cloud 5.2.x into production > seems to be stoped by simple authorization problems. > > Thank you in advane for any help. > > > > 2015-09-10 20:42 GMT+02:00 Noble Paul : > >> Check this https:

Re: Solr authentication - Error 401 Unauthorized

2015-09-13 Thread Noble Paul
; >>> ERROR: Failed to get system information from http://localhost:8983/solr >>> due >>> to: org.apache.http.client.ClientProtocolException: Expected JSON response >>> from server but received: >>> >>> >>> >>> >>> >>> Error 401 Unauthorized >>> >>> >>> >>> HTTP ERROR 401 >>> >>> Problem accessing /solr/admin/info/system. Reason: >>> >>> UnauthorizedPowered by >>> Jetty:// >>> >>> >>> >>> >>> >>> >> >> -- - Noble Paul

Re: Ideas

2015-09-21 Thread Paul Libbrecht
Writing a query component would be pretty easy or? It would throw an exception if crazy numbers are requested... I can provide a simple example of a maven project for a query component. Paul William Bell wrote: > We have some Denial of service attacks on our web site. SOLR threads are >

[ANNOUNCE] Apache Lucene 5.3.1 released

2015-09-24 Thread Noble Paul
release yet. If that is the case, please try another mirror. This also goes for Maven access. Noble Paul on behalf of Lucene PMC

Re: [ANNOUNCE] Apache Lucene 5.3.1 released

2015-09-24 Thread Noble Paul
Wrong title On Thu, Sep 24, 2015 at 10:55 PM, Noble Paul wrote: > 24 September 2015, Apache Solr™ 5.3.1 available > > > The Lucene PMC is pleased to announce the release of Apache Solr 5.3.1 > > > Solr is the popular, blazing fast, open source NoSQL search platform >

[ANNOUNCE] Apache Solr 5.3.1 released

2015-09-24 Thread Noble Paul
min UI stats page Known issues: * On Windows, bin/solr.cmd script fails to start correctly when using relative path with -s parameter. Use absolute path as a workaround . https://issues.apache.org/jira/browse/SOLR-8073 See the CHANGES.txt file included with the release for a full list of cha

Re: Instant Page Previews

2015-10-08 Thread Paul Libbrecht
ut of course, it requires a community approach. Maybe both are needed if there's an infinite budget... Paul > Charlie Hull <mailto:char...@flax.co.uk> > 8 octobre 2015 09:48 > > Hi Lewin, > > We built this feature for another search engine (based on Xapian, >

Re: Kate Winslet vs Winslet Kate

2015-11-01 Thread Paul Libbrecht
note that this is just a suggestion. In particular, parameters really need some testing and adjustment, I think. Paul > Erick Erickson <mailto:erickerick...@gmail.com> > 1 novembre 2015 07:40 > Yeah, that's actually a tough one. You have no control over what the > user type

Re: Kate Winslet vs Winslet Kate

2015-11-01 Thread Paul Libbrecht
s. In IMDB, words such as the names of persons would come in at least different roles; similarly, the actors' role's name is likely to match the family name of persons... Paul > As others indicated having intelligence to recognize the terms (e.g. > Kate should be in name) or some us

  1   2   3   4   5   6   7   8   9   10   >