Re: Solr 5.3 to 6.0

2019-06-19 Thread Erick Erickson
You cannot go from 5->8 true. However, you also cannot go from 5->6->7->8. As of Lucene 8, Lucene will refuse to open an index that has ever been touched by Lucene 6, no matter whether you’ve used IndexUpgraderTool, reindexed all your data etc. So you’ll have to plan on re-indexing from your sy

Re: Solr 5.3 to 6.0

2019-06-19 Thread ilango dhandapani
In solr reference guide, I read that need to go to next major version and cannot jump ahead next major verison, as indexes will not work. I did not attempt from 5.3 to 7.x or 8.x though. Thanks, Ilango -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr 5.3 to 6.0

2019-06-19 Thread Erick Erickson
Got to the latest 6x release if you must stick with 6x. Why not leapfrog all the way to 8? Erick > On Jun 19, 2019, at 9:08 AM, ilango dhandapani > wrote: > > Shawn, > > Is it advisable to goto 6.6 or 6.0 from 5.3.0 ?' > > Thanks, > Ilango > > > > -- > Sent from: http://lucene.472066.n3.

Re: Solr 5.3 to 6.0

2019-06-19 Thread ilango dhandapani
Shawn, Is it advisable to goto 6.6 or 6.0 from 5.3.0 ?' Thanks, Ilango -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr 5.3 to 6.0

2019-06-19 Thread ilango dhandapani
Thanks Shawn. It worked after i explicitly mentioned docValues=False for the fields am using in managed-schema. So in case if I need to re index from scratch in new version, is there any better way of doing that quickly ? Thanks, Ilango -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User

Re: Solr 5.3 to 6.0

2019-06-18 Thread Shawn Heisey
On 6/18/2019 12:16 PM, ilango dhandapani wrote: Tried several attempts like delete collection/config, take index backup from 5.3, clear index and place them back after upgrade. All tried resulted in faceting not working with 5.3 and 6.0 data combined. Most likely what happened here is that the

Solr 5.3 to 6.0

2019-06-18 Thread ilango dhandapani
Am trying to upgrade from solr (cloud mode ) 5.3 to 6.0. My ZK version is 3.4.6 I updated the schema from 6.0 and started back solr as 6.0. All the old data is present. I have a UI, where all the files are displayed ( by search from solr). When I add new data , faceting is not working and having i

Solr 5.3 to 6.0

2019-06-18 Thread ilango dhandapani
Am trying to upgrade my solr (cloud mode ) from 5.3 to 6.0 version. My Zk verison is 3.4.6. After updating schema and starting solr as 6.0, all the nodes health look fine. When I add new files and they goto all the shards, faceting stops working. I have a UI where the files are displayed ( search

Re: How to use Solr 5.3 using Maven ?

2016-09-28 Thread Andrea Gazzarini
Hi, here [1] you can find one way to do that. You can start such class as a JUnit test or a simple main, using Maven or not. Best, Andrea [1] http://stackoverflow.com/questions/31521345/solr-5-integration-tests-with-maven#33189271 On 28/09/16 15:13, todhanda wrote: I am using Solr 5.3

How to use Solr 5.3 using Maven ?

2016-09-28 Thread todhanda
I am using Solr 5.3, and would need to get it working with Apache Maven(3.1.1). Is there any way the Maven can be configured to start and/or stop the Solr 5.3 (may be by using any maven plugin) ? -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-use-Solr-5-3-using

Solr 5.3 with Maven

2016-09-28 Thread Puneet Dhanda
I am using Solr 5.3, and would need to get it working with Apache Maven(3.1.1). Is there any way the Maven can be configured to start and/or stop the Solr 5.3 (may be by using any maven plugin) ? - Puneet

Re: Group and sum in SOLR 5.3

2016-08-08 Thread andreap21
Hi Pablo, will try this. Sorry for the late reply but I didn't get any notification of this answer! Thanks, Andrea -- View this message in context: http://lucene.472066.n3.nabble.com/Group-and-sum-in-SOLR-5-3-tp4289556p4290750.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Group and sum in SOLR 5.3

2016-07-29 Thread Pablo Anzorena
: "sum(price)" } } } 2016-07-29 7:47 GMT-03:00 andreap21 : > Hi, > is there any way in SOLR 5.3 to achieve grouping and do mathematical > operations like sum, avg on a certain document property? > > Please find below example: > > > HIKS > Hotel Holiday

Group and sum in SOLR 5.3

2016-07-29 Thread andreap21
Hi, is there any way in SOLR 5.3 to achieve grouping and do mathematical operations like sum, avg on a certain document property? Please find below example: HIKS Hotel Holiday Inn King's cross 4 40.99 HIKS Hotel Holiday Inn King's cross 4 40.99 HIKS Hotel H

Re: integrate solr 5.3 with casebox

2016-04-28 Thread Erick Erickson
I'd suggest you talk to the casebox folks. BlockJoinFacetComponent is part of the core Solr jar, you'll find a jar named something like solr-core-X.X.X.jar in your distro (or the one provided by casebox). If that jar isn't accessible by Solr, nothing whatsoever would run. So my guess is that you ha

Solr 5.3: anything similar to ChildDocTransformerFactory that does not flatten the hierarchical structure?

2016-03-22 Thread Alisa Z .
Hi all, Following the example from https://dzone.com/articles/using-solr-49-new , let's say we are given multiple-level nested structure: 1 I am the parent PARENT 1.1 I am the 1st child CHILD

Solr 5.3 SSL

2016-02-08 Thread Jian Zhang
Hi, Solr guru We have worked well with solr 5.3 non SSL. Now we are working on SSL by following https://cwiki.apache.org/confluence/display/solr/Enabling+SSL <https://cwiki.apache.org/confluence/display/solr/Enabling+SSL> Cluster is up and and can be accessible via https://:18983/solr/#

Re: indexing rich data with solr 5.3

2016-01-15 Thread kostali hassan
thank you Erik for your precious advice. 2016-01-14 17:24 GMT+00:00 Erik Hatcher : > And also, bin/post can be your friend when it comes to troubleshooting or > introspecting Tika parsing via /update/extract. Like this: > > $ bin/post -c test -params "extractOnly=true&wt=ruby&indent=yes" -out ye

Re: indexing rich data with solr 5.3

2016-01-14 Thread Erik Hatcher
And also, bin/post can be your friend when it comes to troubleshooting or introspecting Tika parsing via /update/extract. Like this: $ bin/post -c test -params "extractOnly=true&wt=ruby&indent=yes" -out yes docs/SYSTEM_REQUIREMENTS.html java -classpath /Users/erikhatcher/solr-5.3.0/dist/solr-co

Re: indexing rich data with solr 5.3

2016-01-14 Thread Erick Erickson
No good way except to try them. For getting details on Tika parsing failures, I much prefer the SolrJ process that the link I sent you outlines. Best, Erick On Thu, Jan 14, 2016 at 7:52 AM, kostali hassan wrote: > thank you Eric I have prb with this files; last question how to define or > get th

Fwd: indexing rich data with solr 5.3

2016-01-14 Thread kostali hassan
thank you Eric I have prb with this files; last question how to define or get the list of files cant be indexing or bad files. > > > >

Re: indexing rich data with solr 5.3

2016-01-12 Thread Erick Erickson
Then you probably have a corrupt file or have discovered a Tika bug. Next I'd try running the file through stand-alone Tika, perhaps trying different versions of Tika. If this latter is the case, you can always use a more recent version of Tika with Solr and/or process the file on a SolrJ client (

Re: indexing rich data with solr 5.3

2016-01-12 Thread kostali hassan
yes i'am indexing succeflly with DIH other files ; now i try to index this files with ExtractingRequestHandler i get this ERROR: null:org.apache.solr.common.SolrException: org.apache.tika.exception.TikaException: Error creating OOXML extractor at org.apache.solr.handler.extraction.Extrac

Re: indexing rich data with solr 5.3

2016-01-11 Thread Erick Erickson
Looks like a bad file. Do you have any success using DIH on any files? What happens if you just send that particular file throug the ExtractingRequestHandler? Best, Erick On Mon, Jan 11, 2016 at 3:51 PM, kostali hassan wrote: > such files msword and pdf donsnt indexing using *dataimoprt i have

indexing rich data with solr 5.3

2016-01-11 Thread kostali hassan
such files msword and pdf donsnt indexing using *dataimoprt i have this error:* Full Import failed:java.lang.RuntimeException: java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: Unable to read content Processing Document # 2 at org.apache.solr.handl

Re: Solr 5.3 spellcheck always return lower case?

2015-11-16 Thread Alessandro Benedetti
Hi QuestionNews, can you send us the schema.xml and the field involved in the problem ? I agree with Erick, are you sure your field type doesn't do any lowercasing ? Cheers On 13 November 2015 at 13:39, QuestionNews . wrote: > The data displayed when doing a query is correct case. The fieldType

Re: Solr 5.3 spellcheck always return lower case?

2015-11-13 Thread Erick Erickson
Let's see 1> the fieldType. Possibly you're missing something there 2> The fact that you see the doc return without lowercasing means nothing, it's returning the _stored_ field which is a verbatim copy. The spellcheck is returning an _indexed_ value. Best, Erick On Fri, Nov 13, 2015 at 5:39 AM, Q

Solr 5.3 spellcheck always return lower case?

2015-11-13 Thread QuestionNews .
The data displayed when doing a query is correct case. The fieldType doesn't do any case manipulation and the requestHandler/searchComponent don't have any settings declared that I can see. Why is my spellcheck returning results that are all lower case? Is there a way for me to stop this from hap

[ANN]: Blog article: every Solr home and example in Solr 5.3

2015-11-02 Thread Alexandre Rafalovitch
If you've recently downloaded Solr 5.x and trying to figure out what example creates a home where and why the example creation command uses configset directory but not configset URL parameter, you may find this useful: http://blog.outerthoughts.com/2015/11/oh-solr-home-where-art-thou/ Regards,

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

2015-09-11 Thread Anshum Gupta
Hi Merlin, Solr 5.2.x only supported Kerberos out of the box and introduced a framework to write your own authentication/authorization plugin. If you don't use Kerberos, the only sensible way forward for you would be to wait for the 5.3.1 release to come out and then move to it. Until then, or wi

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

2015-09-11 Thread Davis, Daniel (NIH/NLM) [C]
The authorization plugin is new in Solr 5.3.It is hard to describe a secure Solr 5.2.1 environment simply - the basics are to protect /solr by placing it behind Apache httpd or nginx, and also a port-based firewall. I am most familiar with Apache httpd and Linux/RedHat family. Within the

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

2015-09-11 Thread Merlin Morgenstern
Thank you for the info. I have already downgraded to 5.2.x as this is a production setup. Unfortunatelly I have the same trouble there ... Any suggestions how to fix this? What is the recommended procedure in securing the admin gui on prod setups? 2015-09-11 14:26 GMT+02:00 Noble Paul : > There

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

2015-09-11 Thread Noble Paul
There were some bugs with the 5.3.0 release and 5.3.1 is in the process of getting released. try out the option #2 with the RC here https://dist.apache.org/repos/dist/dev/lucene/lucene-solr-5.3.1-RC1-rev1702389/solr/ On Fri, Sep 11, 2015 at 5:16 PM, Merlin Morgenstern wrote: > OK, I downgrade

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

2015-09-11 Thread Merlin Morgenstern
OK, I downgraded to solr 5.2.x Unfortunatelly still no luck. I followed 2 aproaches: 1. Secure it the old fashioned way like described here: http://stackoverflow.com/questions/28043957/how-to-set-apache-solr-admin-password 2. Using the Basic Authentication Plugin like described here: http://luci

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-10 Thread Dan Davis
"browseRole" >> >>>>>>>>>> ] >> >>>>>>>>>> } >> >>>>>>>>>> } >> >>>>>>>>>> } >> >>>>&g

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-10 Thread Dan Davis
;>>> 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 because it outputs the messages “Updating /security.json …”, > >>

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

2015-09-10 Thread Noble Paul
Check this https://cwiki.apache.org/confluence/display/solr/Securing+Solr There a couple of bugs in 5.3.o and a bug fix release is coming up over the next few days. We don't provide any specific means to restrict access to admin UI itself. However we let users specify fine grained ACLs on various

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

2015-09-10 Thread Imtiaz Shakil Siddique
If you are using Linux server you can always iptables to restrict access to solr admin panel. On Sep 9, 2015 3:05 PM, "Merlin Morgenstern" wrote: > I just installed solr cloud 5.3.x and found that the way to secure the amin > ui has changed. Aparently there is a new plugin which does role based >

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

2015-09-09 Thread Merlin Morgenstern
I just installed solr cloud 5.3.x and found that the way to secure the amin ui has changed. Aparently there is a new plugin which does role based authentification and all info on how to secure the admin UI found on the net is outdated. I do not need role based authentification but just simply want

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-08 Thread Kevin Lee
lugin class >>>>> obtained from ZK: solr.BasicAuthPlugin”. >>>>>>>>>> >>>>>>>>>> Thanks, >>>>>>>>>> Kevin >>>>>>>>>> >>>>>>>>>>> On Sep

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-05 Thread Dan Davis
t;>>>>>> > >>>>>>>>> On Tue, Sep 1, 2015 at 1:00 PM, Noble Paul > > >>> wrote: > >>>>>>>>>> I removed that statement > >>>>>>>>>> > >>>>>>>>>> "If activating t

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-04 Thread Kevin Lee
>>>>>>>>>> "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-04 Thread Noble Paul
> HTML stuff. But if you perform an action to create a core or do a >> >>>>>>> query through admin UI , it automatically will prompt you for >> >>>>>>> credentials (if those APIs are protected) >> >>>>>>> >> >>

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-04 Thread davidphilip cherian
page incorrect at > >>>>>>>> > https://cwiki.apache.org/confluence/display/solr/Basic+Authentication+Plugin > which says that the admin ui will require authentication once the > authorization plugin is activated? > >>>>>>>> > >>>

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-04 Thread Kevin Lee
t;>>> which says that the admin ui will require authentication once the >>>>>>>> authorization plugin is activated? >>>>>>>> >>>>>>>> "An authorization plugin is also available to configure Solr with >>>>>>

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-03 Thread Noble Paul
tivated, access to the Solr Admin UI and all requests will need to be >>>>>>> authenticated and users will be required to have the proper >>>>>>> authorization for all requests, including using the Admin UI and making >>>>>>> any API

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-02 Thread Noble Paul
min UI and all requests will need to be >>>>>> authenticated and users will be required to have the proper >>>>>> authorization for all requests, including using the Admin UI and making >>>>>> any API calls." >>>>>> >>>&

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-02 Thread Kevin Lee
before starting any of the >>>>> Solr instances. However, I tried to upload security.json before starting >>>>> any of the Solr instances, but it would not pick up the security config >>>>> until after the Solr instances are already running and th

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
olr instances. However, I tried to upload security.json before starting >>>> any of the Solr instances, but it would not pick up the security config >>>> until after the Solr instances are already running and then uploading the >>>> security.json again. I can se

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread shamik
Hi Kevin, Were you able to get a workaround / fix for your problem ? I'm also looking to secure Collection and Update APIs by upgrading to 5.3. Just wondering if it's worth the upgrade or should I wait for the next version, which will probably address this. Regards, Shamik -- View this messa

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Kevin Lee
er 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: >>>> >>>> Admin UI i

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
;> >>> Thanks, >>> Kevin >>> >>>> On Aug 31, 2015, at 11:22 PM, Noble Paul wrote: >>>> >>>> Admin UI is not protected by any of these permissions. Only if you try >>>> to perform a protected operation , it asks for a password. &g

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
Noble Paul wrote: >>> >>> Admin UI is not protected by any of these permissions. Only if you try >>> to perform a protected operation , it asks for a password. >>> >>> I'll investigate the restart problem and report my findings >>> >

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Noble Paul
n Lee wrote: >>> Anyone else running into any issues trying to get the authentication and >>> authorization plugins in 5.3 working? >>> >>>> On Aug 29, 2015, at 2:30 AM, Kevin Lee wrote: >>>> >>>> Hi, >>>> >>>>

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-09-01 Thread Kevin Lee
the authentication and >> authorization plugins in 5.3 working? >> >>> On Aug 29, 2015, at 2:30 AM, Kevin Lee wrote: >>> >>> Hi, >>> >>> I’m trying to use the new basic auth plugin for Solr 5.3 and it doesn’t >>> seem to be wo

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-08-31 Thread Noble Paul
get the authentication and > authorization plugins in 5.3 working? > >> On Aug 29, 2015, at 2:30 AM, Kevin Lee wrote: >> >> Hi, >> >> I’m trying to use the new basic auth plugin for Solr 5.3 and it doesn’t seem >> to be working quite right. Not sure

Re: Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-08-31 Thread Kevin Lee
Anyone else running into any issues trying to get the authentication and authorization plugins in 5.3 working? > On Aug 29, 2015, at 2:30 AM, Kevin Lee wrote: > > Hi, > > I’m trying to use the new basic auth plugin for Solr 5.3 and it doesn’t seem > to be working quite r

Solr 5.3 Faceting on Children with Block Join Parser

2015-08-31 Thread Tom Devel
Apologies for cross posting a question from SO here. I am very interested in the new faceting on child documents feature of Solr 5.3 and would like to know if somebody has figured out how to do it as asked in the question on http://stackoverflow.com/questions/32212949/solr-5-3-faceting-on

Issue Using Solr 5.3 Authentication and Authorization Plugins

2015-08-29 Thread Kevin Lee
Hi, I’m trying to use the new basic auth plugin for Solr 5.3 and it doesn’t seem to be working quite right. Not sure if I’m missing steps or there is a bug. I am able to get it to protect access to a URL under a collection, but am unable to get it to secure access to the Admin UI. In

Securing Solr 5.3 with Basic Authentication

2015-08-26 Thread Gofio Code
With version 5.3 Solr have full-featured authentication and authorization plugins that use Basic authentication and “permission rules” which are completely driven from ZooKeeper. So I have tried that without success follwong the info in https://cwiki.apache.org/confluence/display/solr/Securing+So

ANNOUNCE: Apache Solr Reference Guide for Solr 5.3 released

2015-08-25 Thread Cassandra Targett
The Lucene PMC is pleased to announce the release of the Solr Reference Guide for Solr 5.3. This 577 page PDF is the definitive guide for using Apache Solr and can be downloaded from: https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/ If you have

Re: SOLR 5.3

2015-08-24 Thread Noble Paul
The release is underway. Incorporating some corrections suggested by others. Expect an announcement ove rthe next few hours On Sun, Aug 23, 2015 at 6:44 PM, Arcadius Ahouansou wrote: > Solr-5.3 has been available for download from > http://mirror.catn.com/pub/apache/lucene/solr/5.3.0/ &

Re: SOLR 5.3

2015-08-23 Thread Arcadius Ahouansou
Solr-5.3 has been available for download from http://mirror.catn.com/pub/apache/lucene/solr/5.3.0/ The redirection on the web site will probably be fixed before we get the official announcement. Arcadius. On 23 August 2015 at 09:00, William Bell wrote: > At lucene.apache.org/solr it says S

SOLR 5.3

2015-08-23 Thread William Bell
At lucene.apache.org/solr it says SOLR 5.3 is there, but when I click on downloads it shows Solr 5.2.1... ?? "APACHE SOLR™ 5.3.0Solr is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene™." -- Bill Bell billnb...@gmail.com cell 720-256-8076

Re: SOLR 5.3

2015-08-04 Thread Shawn Heisey
On 8/4/2015 7:28 PM, William Bell wrote: > When do we think SOLR 5.3 might come out? > > It is nearly ready? There is no simple answer to this question. There are a lot of things that could change the release date. For anyone who wants to keep up on the pulse of releases, you can joi

Re: SOLR 5.3

2015-08-04 Thread Alexandre Rafalovitch
s and even a newsletter: http://www.solr-start.com/ On 4 August 2015 at 21:28, William Bell wrote: > When do we think SOLR 5.3 might come out? > > It is nearly ready? > > -- > Bill Bell > billnb...@gmail.com > cell 720-256-8076

SOLR 5.3

2015-08-04 Thread William Bell
When do we think SOLR 5.3 might come out? It is nearly ready? -- Bill Bell billnb...@gmail.com cell 720-256-8076