Re: Arabic analyser

2015-11-11 Thread David Murgatroyd
>So BasisTech works for the latest version of solr? Yes, our latest Arabic analyzer supports up through 5.3.x. But since the examples you give are names, it sounds like you might instead/also want our fuzzy name matcher which will find "عبد الله" not only with "عبدالله" but also with typos like

Explicit commit with openSearcher=false

2015-11-11 Thread Sathyakumar Seshachalam
Hi, I have a Search system based on Solr that relies on autoCommit configuration (with openSearcher=false). I now have a use-case that requires me to disable autoCommit and issue explicit commit commands, But as I understand an explicit commit command "always" opens a searcher. Is this correct

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Sathyakumar Seshachalam
And I am using version 4.10.3 On 11/11/15, 4:04 PM, "Sathyakumar Seshachalam" wrote: >Hi, > >I have a Search system based on Solr that relies on autoCommit >configuration (with openSearcher=false). I now have a use-case that >requires me to disable

Indexing HTML table into SOLR

2015-11-11 Thread Sznajder ForMailingList
Hi, Does one of you have some pointers (articles, papers, etc...) or experience to share about the right way for indexing the html tables content into Solr Documents? Thanks! Benjamin

Re: Search query speed

2015-11-11 Thread Chris Hostetter
: The speed of particular query has gone from about 42 msec to 66 msec : without any changes. 1) Define "speed" ? how are you measuring? where are you measuring? are you measuring averages? over what sample size? 2) define "particular query" ? what types of queries? what types of params are

Re: Parent/Child (Nested Document) Faceting

2015-11-11 Thread Yonik Seeley
On Wed, Nov 11, 2015 at 12:34 PM, Alessandro Benedetti wrote: > Anyway everything seems possible to me trough the ( I love it, can stop to > repeat it) Json Facet Approach. Thanks, the positive feedback definitely gives me motivation to keep improving it! -Yonik

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Mikhail Khludnev
Does waitSearcher=false works like you need? On Wed, Nov 11, 2015 at 1:34 PM, Sathyakumar Seshachalam < sathyakumar_seshacha...@trimble.com> wrote: > Hi, > > I have a Search system based on Solr that relies on autoCommit > configuration (with openSearcher=false). I now have a use-case that >

Re: Parent/Child (Nested Document) Faceting

2015-11-11 Thread Alessandro Benedetti
Adding to Yonik response, I think the feature shown by the Elastic Search blog is simply the "Faceting on Parents" one, "A special single bucket aggregation that enables aggregating on parent docs from nested documents. " Indeed it seems to not search on the parents then facets on children and

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Upayavira
Erick, I saw mention of openSearcher for SolrJ, so I looked in the source of the UpdateRequestHandler, and there is no mention of openSearcher in there that I can see, for XML, JSON or SolrJ requests. So my take is that this isn't possible right now :-( Upayavira On Wed, Nov 11, 2015, at 02:53

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Erick Erickson
How are you intending to issue your commit? SolrJ has all the variants (openSercher, soft/hard commit, etc) for the commit calls. Best, Erick On Wed, Nov 11, 2015 at 2:35 AM, Sathyakumar Seshachalam wrote: > And I am using version 4.10.3 > > On 11/11/15,

[solr build in eclipse for debuging] assertTrue error

2015-11-11 Thread Hangu Choi
Hi, I'm trying to debug, and I downloaded solr source and built it. everything is fine except one thing. all test code "assertTrue" got error. It looks like there is no static import for assertTrue. I think adding static import to all of testcase by myself is not good way I don't understand

Re: [solr build in eclipse for debuging] assertTrue error

2015-11-11 Thread Erick Erickson
How did you build it in Eclipse? Did you execute the "ant eclipse" target? Did you follow all the hints at http://wiki.apache.org/solr/HowToConfigureEclipse? I'd also go the solr directory and execute "ant server dist" if you haven't already on the off chance that you didn't get all of the

Re: Parent/Child (Nested Document) Faceting

2015-11-11 Thread Yonik Seeley
On Mon, Nov 9, 2015 at 2:37 PM, Mikhail Khludnev wrote: > Yonik, > > I wonder is there a plan or a vision for something like > https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-reverse-nested-aggregation.html > under JSON

Re: Arabic analyser

2015-11-11 Thread Mahmoud Almokadem
Thank Alex, So BasisTech works for the latest version of solr? Sincerely, Mahmoud On Tue, Nov 10, 2015 at 5:28 PM, Alexandre Rafalovitch wrote: > If this is for a significant project and you are ready to pay for it, > BasisTech has commercial solutions in this area I

Re: Arabic analyser

2015-11-11 Thread Mahmoud Almokadem
Thank you very much David, It's wonderful and I will try it. On Wed, Nov 11, 2015 at 1:37 PM, David Murgatroyd wrote: > >So BasisTech works for the latest version of solr? > > Yes, our latest Arabic analyzer supports up through 5.3.x. But since the > examples you give are

答复: full garbage collection about upgraded the solr version to 5.3.0

2015-11-11 Thread 殷亚云
I have 82 segments in my index, when I merge to 40 , garbage collection become optimistic. So I want to know, how many segment size is more appropriate. 发件人: 殷亚云 [mailto:yinya...@made-in-china.com] 发送时间: Tuesday, October 27, 2015 4:54 PM 收件人: 'solr-user@lucene.apache.org' 主题: full

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Sathyakumar Seshachalam
I intend to use SolrJ. I only saw the below overloaded commit method in documentation (http://lucene.apache.org/solr/4_10_3/solr-solrj/index.html) of class ³org.apache.solr.client.solrj.SolrServer" public UpdateResponse commit(boolean waitFlush, boolean waitSearcher, boolean softCommit). And I

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Mark Miller
openSearcher is a valid param for a commit whatever the api you are using to issue it. - Mark On Wed, Nov 11, 2015 at 12:32 PM Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Does waitSearcher=false works like you need? > > On Wed, Nov 11, 2015 at 1:34 PM, Sathyakumar Seshachalam < >

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Chris Hostetter
: I saw mention of openSearcher for SolrJ, so I looked in the source of : the UpdateRequestHandler, and there is no mention of openSearcher in : there that I can see, for XML, JSON or SolrJ requests. : : So my take is that this isn't possible right now :-( It's handled by the Loaders - all of

Re: Search query speed

2015-11-11 Thread John Stric
There is a .NET app that is calling solr. I am measuring time span using .NET provided methods. It used to take about 42 msec and it started taking 66 msec from the time to compose the call and query solr, get results and parse them back. Interestingly today it was close to 44 msec. I am testing

From Solr 5.1.0 to 5.3.1

2015-11-11 Thread Troy Edwards
I am testing to see if we can go to Solr 5.3.1. When I try to create collection (using collection api) I am getting an error: "ClassNotFoundException" org.apache.solr.handler.dataimport.DataImportHandler I have all the files in exactly the same locations In my solrconfig.xml: This is where I

Re: Solr cross core join special condition

2015-11-11 Thread Steven Bower
commenting so this ends up in Dennis' inbox.. On Tue, Oct 13, 2015 at 7:17 PM Yonik Seeley wrote: > On Wed, Oct 7, 2015 at 9:42 AM, Ryan Josal wrote: > > I developed a join transformer plugin that did that (although it didn't > > flatten the results like

Re: Solr cross core join special condition

2015-11-11 Thread Dennis Gove
I am intending to backport SOLR-7584 to 5_x. It depends on a couple of changes in a patch related to the new SQL API which is not being backported. I've got to go through and pull out the pieces needed and create a patch for 5_x. Hopefully we'll have this in 5_x soon. On Wed, Nov 11, 2015 at 2:18

Re: Parent/Child (Nested Document) Faceting

2015-11-11 Thread Mikhail Khludnev
I found that example has not enough data to reproduce this functionality. what if Mary left the same comment to the same book (book2_c4), then we search for th* across comments http://localhost:8983/solr/techproducts/select?q=comment_t%3Ath*=csv=true=author_s,comment_t,id and get

Re: Explicit commit with openSearcher=false

2015-11-11 Thread Upayavira
On Wed, Nov 11, 2015, at 06:28 PM, Chris Hostetter wrote: > > : I saw mention of openSearcher for SolrJ, so I looked in the source of > : the UpdateRequestHandler, and there is no mention of openSearcher in > : there that I can see, for XML, JSON or SolrJ requests. > : > : So my take is that

AUTO: Nicholas M. Wertzberger is out of the office (returning 12/07/2015)

2015-11-11 Thread Nicholas M. Wertzberger
I am out of the office until 12/07/2015. I'll be out of the office until December 7th spending bonding time with the newest member of my family. For JAS Team issues, please contact Jason Brown. For ICE related development issues or other development-related questions, please contact Tyler

Re: fl=value equals?

2015-11-11 Thread Upayavira
I concur with Jan - what does b= do? Also asking, how did you identify that it worked? Upayavira On Wed, Nov 11, 2015, at 02:58 AM, William Bell wrote: > I was able to get it to work kinda with a map(). > > http://localhost:8983/solr/select?q=*:*=1= >

Re: Need help to create Solr committer account / email address.

2015-11-11 Thread Upayavira
On Wed, Nov 11, 2015, at 07:22 AM, ANUP DIXIT wrote: > Hi Solr Team, > > Please help me or let me know process, how can I create an Solr committer > account / email address. > I did read instruction at https://reference.apache.org/committer/email, > but > not able to get this right or