Re: Solr status showing wrong data

2019-09-23 Thread Paras Lehana
Hi, Jayadevan 2 GB is not 11.8% of 3.8 GB. This is an interesting observation. I also confirmed the ambiguity on my machine: "memory":"4 GB (%26.3) of 7.7 GB" My JVM heap config is: -Xms8g -Xmx16g So, this 26.3% could be of the* max available heap space* *(*)* allocated to solr process

Solr status showing wrong data

2019-09-23 Thread Jayadevan Maymala
Hi, I just tried service solr status on my CentOS machine. It gave this output for memory utilization - "memory":"2 GB (%11.8) of 3.8 GB", 2 GB is not 11.8% of 3.8 GB. Is it that I am not understanding the output correctly? Solr Version - 7.3.0 CentOS 7.7 Regards, Jayadevan

Trying to add model name to classify() output

2019-09-23 Thread Peter Davie
Hi, I have trained a number of logistic regression classification models (using train()) and I am now trying to evaluate these models.  I want to add the model name to the classify() (output) stream.  I am trying to use the following select() with setValue() as follows: select(    

Re: How do I index PDF and Word Doc

2019-09-23 Thread Pasle Choix
Thank you Susheel, Here is what I see from /opt/solr-7.7.2/server/solr/configsets/_default/conf/solrconfig.xml: true ignored_ _text_ Is there anything wrong with it and how to fix it? Thank you. Pasle Choix On Mon, Sep 23, 2019 at 2:09 PM Susheel Kumar

Re: How do I index PDF and Word Doc

2019-09-23 Thread Susheel Kumar
Which collection are you trying to index? Is the localDocs or books? you can also try to run thru steps @ exercise 1 at above link to post data to techproducts and in general it should work end to end solr-7.7.0:$ bin/post -c techproducts example/exampledocs/* Which documents do you On Mon,

Does Solr delete child documents with parents?

2019-09-23 Thread S G
Hi, Last section of https://lucene.apache.org/solr/guide/8_0/indexing-nested-documents.html is a little bit confusing: To delete a nested document, you can delete it by the ID of the root document. If you try to use an ID of a child document, nothing will happen since only root document IDs are

Re: How do I index PDF and Word Doc

2019-09-23 Thread Susheel Kumar
Not sure which configuration you are using but double check solrconfig.xml to have entries like below and have below sr_mv_txt below in schema.xml for storing and indexing. true ignored_ sr_mv_txt Thnx On Thu, Sep 19, 2019 at 11:02 PM PasLe Choix wrote: > I am on Solr