Re: Solr 7.2.1 - unexpected docvalues type
We can’t answer whether you should change the field type for two reasons: 1> It depends on your use case. 2> we don’t know what the field type “lowercase” does. It’s composed of an analysis chain that you may have changed. And whatever config you are using may have changed with different releases of Solr. Grouping is generally done on a docValues-eligible field type. AFAIK, “lowercase” is a solr-text based field so is ineligible for docValues. I’ve got to guess here, but I’d suggest you start with a fieldType of “string”, and enable docValues on it. Best, Erick > On Nov 9, 2019, at 12:54 AM, Antony Alphonse wrote: > >> >> Hi Shawn, >> > > I will try that solution. Also I had to mention that the queries that fail > with this error has the "group.field":"lowercase". Should I change the > field type? > > Thanks, > Antony
Re: [EXTERNAL] Re: XLSX Response Writer
It is not the same thing. Instead of adding those lib lines to solr config you should copy the jars as it says in refguide, then restart solr. I think you can get trouble if you do it both ways. Jan Høydahl > 8. nov. 2019 kl. 18:59 skrev Lewin Joy (TMNA) : > > Hi Jorn, > > I am using Solr version 7.1 > > Correction on the change that I did. I just added the jars in my > solrconfig.xml file as below: > > regex=".*\.jar" /> > regex="solr-cell-\d.*\.jar" /> > > The cp command was the steps I saw in the reference guide. > I figured it should be the same thing. > > -Lewin > > -Original Message- > From: Jörn Franke > Sent: Friday, November 8, 2019 11:51 AM > To: solr-user@lucene.apache.org > Subject: [EXTERNAL] Re: XLSX Response Writer > > Which Solr version are you using? > The below command suggest you are using 6.3 - is this correct? > > Have you restarted the Solr server after copying? > >> Am 08.11.2019 um 18:42 schrieb Lewin Joy (TMNA) : >> >> Hi, >> >> How do I use the xlsx response writer to extract my results to an excel file? >> >> I made the changes as per documentation to include the jars and gave >> wt=xlsx. It did not work. >> Would this only work with solrJ? Can't we use this in the query parameter >> &wt=xlsx? >> >> cp contrib/extraction/lib/*.jar server/solr-webapp/webapp/WEB-INF/lib/ >> cp dist/solr-cell-6.3.0.jar server/solr-webapp/webapp/WEB-INF/lib/ >> >> >> Thanks, >> Lewin
Re: Does Solr replicate data securely
You choose. If you use solr cloud and have enabled ssl in your cluster, then all requests including replication will be secure (https). This it is still tcp but using TLS :) Jan Høydahl > 6. nov. 2019 kl. 00:03 skrev Pushkar Raste : > > Hi, > When slaves/pull replicas copy index files from master is done using an > secure protocol or just over tcp? > -- > — Pushkar Raste
Re: Solr 7.2.1 - unexpected docvalues type
Hi Shawn, Thank you. I switched the fieldType=string and it worked. I might have to check on the use-case to see if "string" will work for us. I have noted the "lowercase" field type which I believe is similar to the one in schema ver 1.6. Thanks, Antony On Sat, Nov 9, 2019 at 7:52 AM Erick Erickson wrote: > We can’t answer whether you should change the field type for two reasons: > > 1> It depends on your use case. > 2> we don’t know what the field type “lowercase” does. It’s composed of an > analysis chain that you may have changed. And whatever config you are using > may have changed with different releases of Solr. > > Grouping is generally done on a docValues-eligible field type. AFAIK, > “lowercase” is a solr-text based field so is ineligible for docValues. I’ve > got to guess here, but I’d suggest you start with a fieldType of “string”, > and enable docValues on it. > > Best, > Erick > > > > > On Nov 9, 2019, at 12:54 AM, Antony Alphonse > wrote: > > > >> > >> Hi Shawn, > >> > > > > I will try that solution. Also I had to mention that the queries that > fail > > with this error has the "group.field":"lowercase". Should I change the > > field type? > > > > Thanks, > > Antony > >