Re: LTR features not found in Solr after uploading

2018-07-11 Thread Zheng Lin Edwin Yeo
This is the only output that I get when I tried to run the URL http://localhost:8983/solr/techproducts/schema/feature-store { "responseHeader":{ "status":0, "QTime":0}, "featureStores":["_DEFAULT_"]} Regards, Edwin On 11 July 2018 at 23:15, Zheng Lin Edwin Yeo wrote: > Hi, > > I

solr config ganglia reporter encounter an exception

2018-07-11 Thread zhenyuan wei
Hi all, My solr version is release7.3.1, and I follow the solr 7.3.0 ref guide to config ganglia reporter in solr.xml as below: .. emr-header-1 8649 than start solr service and encounted the execption like: 2018-07-11 17:47:31.246 ERROR (main) [ ]

Re: Access to Jira

2018-07-11 Thread Erick Erickson
You need to create a JIRA account. That said, I don't believe you can do things like assign tickets to yourself or the like unless you are a committer. That said, you _can_ attach patches, make comments and participate in the development. What people usually do is 1> add a comment to the JIRA you

Access to Jira

2018-07-11 Thread Ruchir Choudhry
https://issues.apache.org/jira/projects/SOLR/issues/SOLR-12128?filter=allopenissues Pls help me to get access to JIRA so that i can pickup tickets to work on. Thanks in advance, Ruchir

Re: Exception writing document xxxxxx to the index; possible analysis error.

2018-07-11 Thread Tomas Fernandez Lobbe
I Daphne, the “possible analysis error” is a misleading error message (to be addressed in SOLR-12477). The important piece is the “java.lang.ArrayIndexOutOfBoundsException”, it looks like your index may be corrupted in some way. Tomás > On Jul 11, 2018, at 3:01 PM, Liu, Daphne wrote: > >

Exception writing document xxxxxx to the index; possible analysis error.

2018-07-11 Thread Liu, Daphne
Hello Solr Expert, We are using Solr 6.3.0 and lately we are unable to write documents into our index. Please see below error messages. Can anyone help us? Thank you. ===

SolrCloud and Kubernetes

2018-07-11 Thread Sundar Sivashunmugam
Hi, We are interested in setting up SolrCloud in Kubernetes, is there any documentation available for similar setup? Thanks! Sundar Sivashunmugam

Re: solr filter query on text field

2018-07-11 Thread Erick Erickson
bq. is there any difference if the fq field is a string field vs test Absolutely. string fields are not analyzed in any way. They're not tokenized. There are case sensitive. Etc. For example takd My dog as input. A string field will have a _single_ token "My dog.". It will not match a search on

Text Similarity

2018-07-11 Thread Aroop Ganguly
Hi Team This is what I want to do: 1. I have 2 datasets of the schema id-number and company-name 2. I want to ultimately be able to link (join or any other means) the 2 data sets based on the similarity between the company-name fields of the 2 data set. Example: Dataset 1 Id | Company

RE: SOLR 7.2.1 on SLES 11?

2018-07-11 Thread Lichte, Lucas R - DHS (Tek Systems)
Thanks for the head's up on that bug, it looks like we'll be doing some script editing either way. I think 1 is the most popular with the team at this point, but I'll take the temperature and see how people feel. -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent:

Re: SOLR 7.2.1 on SLES 11?

2018-07-11 Thread Shawn Heisey
On 7/11/2018 12:09 PM, Lichte, Lucas R - DHS (Tek Systems) wrote: > Hello, we're trying to get SOLR 7.2.1 running on SLES 11 but we hit issues > with BASH 3 and the ${distro_string,,} at the beginning of the > install_solr_service.sh. We're just trying to get this upgraded without > tossing

Re: solr filter query on text field

2018-07-11 Thread Wei
btw, is there any difference if the fq field is a string field vs test field? On Wed, Jul 11, 2018 at 11:59 AM, Wei wrote: > Thanks Erick and Andrea! If my default operator is OR, fq= > my_text_field:(Jurassic park the movie) is equivalent to > my_text_field:(Jurassic > OR park OR the OR

Re: solr filter query on text field

2018-07-11 Thread Wei
Thanks Erick and Andrea! If my default operator is OR, fq= my_text_field:(Jurassic park the movie) is equivalent to my_text_field:(Jurassic OR park OR the OR movie)? That make sense. On Wed, Jul 11, 2018 at 9:06 AM, Andrea Gazzarini wrote: > The syntax is valid in all those three examples,

Re: Solr7.3.1 Installation

2018-07-11 Thread Erick Erickson
Gah! Jason is right Siiih. That'll teach me to try to do two things at once. On Wed, Jul 11, 2018 at 11:02 AM, Jason Gerlowski wrote: > (I think Erick made a slight typo above: to disable "bad apple" tests, > use the flag "-Dtests.badapples=false") > On Wed, Jul 11, 2018 at 11:14 AM

SOLR 7.2.1 on SLES 11?

2018-07-11 Thread Lichte, Lucas R - DHS (Tek Systems)
Hello, we're trying to get SOLR 7.2.1 running on SLES 11 but we hit issues with BASH 3 and the ${distro_string,,} at the beginning of the install_solr_service.sh. We're just trying to get this upgraded without tossing out the old DB serves so we can get the content team happy and move on to

Re: Solr7.3.1 Installation

2018-07-11 Thread Jason Gerlowski
(I think Erick made a slight typo above: to disable "bad apple" tests, use the flag "-Dtests.badapples=false") On Wed, Jul 11, 2018 at 11:14 AM Erick Erickson wrote: > > Note that the native test runs have the know-flaky tests _enabled_ by > default, run tests with > > -Dtests.badapples=true > >

Re: solr filter query on text field

2018-07-11 Thread Andrea Gazzarini
The syntax is valid in all those three examples, the right one depends on what you need. The first query executes a proximity search (you can think to a phrase search, for simplicity) so it returns no result because probably you don't have any matching docs with that whole literal. The second is

Re: Regarding pdf indexing issue

2018-07-11 Thread Terry Steichen
Walter, Well said.  (And I love the hamburger conversion analogy - very apt.) The only thing I will add is that when you have a collection of similar rich text documents, you might be able to construct queries to respect internal structures within the documents.  If all/most of your documents

Re: solr filter query on text field

2018-07-11 Thread Erick Erickson
1> is looking for the _phrase_, so the four tokens "jurassic" "park" "the" "movie" have to appear next to each other in that order. 2> is looking for the four tokens anywhere in the field. Whether they _all_ must appear depends on whether the default operator (OR or AND). 3> is parsed as

Re: Regarding pdf indexing issue

2018-07-11 Thread Shamik Sinha
You may try to use tesseract tool to check data extraction from pdf or images and then go forward accordingly. As far as I understand the PDF is an image and not data. The searchable PDF actually overlays the selectable text as hidden text over the PDF image. These PDFs can be indexed and

solr filter query on text field

2018-07-11 Thread Wei
Hi, I am running filter query on a field of text_general type and see completely different results for the following queries: fq= my_text_field:"Jurassic park the movie" returns 0 result fq= my_text_field:(Jurassic park the movie) returns 20 result fq=

Re: Regarding pdf indexing issue

2018-07-11 Thread Walter Underwood
PDF is not a structured document format. It is a printer control format. PDF does not have a paragraph marker. Instead, it says to move to this spot on the page, choose this font, and print this letter. For a paragraph, it moves farther. For the next letter in a word, it moves a little bit.

Re: Solr unable to start up after setting up SSL in Solr 7.4.0

2018-07-11 Thread Zheng Lin Edwin Yeo
Hi, I found that if we replace the following files with the copy from Solr 7.3.1, the SSL can work - jetty.xml - jetty-http.xml - jetty-https.xml - jetty-ssl.xml But the copies that comes with Solr 7.4.0 are not working. I found there are some differences in the file, but not sure if there are

Re: Number of fields in a solrCloud collection config

2018-07-11 Thread Erick Erickson
As Shawn says, there's no hard limit, but having that many fields almost always indicates a flawed design. I'd pretty strongly suggest that you reconsider your design with an eye towards reducing the field count to something less than, say, 1,000. That number is fairly arbitrary, and ideally I'd

LTR features not found in Solr after uploading

2018-07-11 Thread Zheng Lin Edwin Yeo
Hi, I am setting up the Learing to Rank (LTR) in Solr 7.4.0, and I am following the steps from the guide from https://lucene.apache.org/solr/guide/7_4/learning-to-rank.html However, after uploading the features file (myFeatures.json) using curl with the same structure as the myFeatures.json in

Re: Solr7.3.1 Installation

2018-07-11 Thread Erick Erickson
Note that the native test runs have the know-flaky tests _enabled_ by default, run tests with -Dtests.badapples=true to disable them. Second possibility is to look at the tests that failed and if there is an annotation @BadApple or @AwaitsFix ignore the failure if you can get the tests to pass

Re: Regarding pdf indexing issue

2018-07-11 Thread Erick Erickson
Solr will not do this automatically, the Extracting Request Handler simply indexes the entire contents of the doc without regard to things like paragraphs etc. Ditto with HTML. This is actually a task that requires getting into Tika and using all the bells and whistles there. I'd recommend two

Regarding pdf indexing issue

2018-07-11 Thread Rahul Prasad Dwivedi
Hello Team, I am using the Solr for indexing and searching for pdf document I have go through with your website document and installed solr but unable to index and search the document. For example: Suppose we have a PDF file which have no of paragraph with separate heading. So If I search for

Re: Sum and aggregation on nested documents field

2018-07-11 Thread jeebix
My apologize Mikhail, I try to explain it better : This is actually what I get from SOLR with the query you helped me to build : "responseHeader":{ "status":0, "QTime":15, "params":{ "q":"{!parent which=object_type_s:contact score=max v=$chq}", "indent":"on",

Re: Sorting and pagination in Solr json range facet

2018-07-11 Thread simon
Looking carefully at the documentation for JSON facets, it looks as though the offset parameter is not supported for range facets, only for term facets. You'd have to do pagination in your application. -Simon On Tue, Jul 10, 2018 at 11:45 AM, Anil wrote: > HI Eric, > > i mean pagination is

Re: Solr7.3.1 Installation

2018-07-11 Thread Shawn Heisey
On 7/10/2018 11:20 PM, tapan1707 wrote: We are trying to install solr-7.3.1 into our existing system (We have also made some changes by adding one custom query parser). I am having some build issues and it would be really helpful if someone can help. While running ant test(in the process of

Re: Number of fields in a solrCloud collection config

2018-07-11 Thread Shawn Heisey
On 7/11/2018 2:05 AM, Sharif Shahriar wrote: Is there any limitation on how many field can be added in a solrcloud collection configset? After adding 24,520 fields when I wan't to add new fields, it shows -"Error persisting managed schema at /configs/*/managed-schema" -"zkClient has

Re: Hi, happy to join this solr party.

2018-07-11 Thread Steve Rowe
Welcome! To subscribe, send an email to solr-user-subscr...@lucene.apache.org . More info here: http://lucene.apache.org/solr/community.html#mailing-lists-irc -- Steve www.lucidworks.com > On Jul 10, 2018, at 6:07 AM, zhenyuan wei wrote: > > I'd like to subscribe this maillist, thanks.

Re: Sum and aggregation on nested documents field

2018-07-11 Thread Mikhail Khludnev
"to facet the results or to be able to filter on the score returned" This is not clear, you need to clarify it to be replied. On Wed, Jul 11, 2018 at 2:48 AM jeebix wrote: > Hello Mikhail, > > First thanks a lot for your answers which are very useful for me... Then, I > tried the query with

solr config ganglia report class not found exception

2018-07-11 Thread zhenyuan wei
Hi all, My solr version is release7.3.1, and I follow the solr 7.3.0 ref guide to config ganglia reporter in solr.xml as below: .. emr-header-1 8649 than start solr service and encounted the execption like: 2018-07-11 17:47:31.246 ERROR (main) [ ]

Number of fields in a solrCloud collection config

2018-07-11 Thread Sharif Shahriar
Is there any limitation on how many field can be added in a solrcloud collection configset? After adding 24,520 fields when I wan't to add new fields, it shows -"Error persisting managed schema at /configs/*/managed-schema" -"zkClient has disconnected" Thank you, Sharif -- Sent from:

Re: Solr7.3.1 Installation

2018-07-11 Thread tapan1707
Hi Emir, Thanks for your reply. Here building Solr has nothing to do with custom query parser. Our system has been designed in such a way that package is created by running following commands (there are other commands too but not related to solr, hence omitting those) ${ANT} -buildfile

Re: Solr7.3.1 Installation

2018-07-11 Thread Emir Arnautović
Hi, Why are you building Solr? Because you added your custom query parser? If that’s the case, then it is not the way to do it. You should set up separate project for your query parser, build it and include jar in your Solr setup. It is not query parser, but here is blog/code for simple update

Solr facet division of 2 aggregation function

2018-07-11 Thread hossein nasr esfahani
I'm storing 2 type of data for each record in my Solr core. first one is the total number of tasks in each day (total) and the second one is the total number of *finished* tasks in each day (finished). I want to compute how many percents of tasks was finished in each *month* using solr json facet

Hi, happy to join this solr party.

2018-07-11 Thread zhenyuan wei
I'd like to subscribe this maillist, thanks.

RE: RE: Inquiry

2018-07-11 Thread Farooq Amin
Hello, what is your MOQ and price per 1 item? can you make order exactly as same in the link below? We will be waiting your reply to proceed. Please reply me on my business email ASAP as we need an urgent order: farooq_a...@outlook.com best regards, Farooq Amin Sent from my iPhone

Re: Sum and aggregation on nested documents field

2018-07-11 Thread jeebix
Hello Mikhail, First thanks a lot for your answers which are very useful for me... Then, I tried the query with the '$' parameter, and I get some great result like this : "id":"693897", "asso_i":693897, "etat_technique_s":"avec_documents", "etat_marketing_s":"actif",

Re: Solr OpenNLP named entity extraction

2018-07-11 Thread Jerome Yang
Thanks a lot Steve! On Wed, Jul 11, 2018 at 10:24 AM Steve Rowe wrote: > Hi Jerome, > > I was able to setup a configset to perform OpenNLP NER, loading the model > files from local storage. > > There is a trick though[1]: the model files must be located *in a jar* or > *in a subdirectory* under

Sum and aggregation on nested documents field

2018-07-11 Thread jeebix
Hello everybody, I have a question about how to retrieve results from SOLR with some aggregation (like sum in my case...) on the nested documents. First, the data SOLR returned with a standard query : { "id":"3911.3912.1278", "parent_i":3191, "asso_i":3112,