Re: Setting up Solr on multiple machines

2015-11-26 Thread Zheng Lin Edwin Yeo
Yes, the ZooKeeper is Windows compatible. You can follow the guide, just need to replace the Linux commands with the Windows commands and paths Regards, Edwin On 26 November 2015 at 20:56, Alessandro Benedetti wrote: > I think it should be straightforward following the

Spellcheck on first character

2015-11-26 Thread Ryan Yacyshyn
Hi all, Is it possible to provide spelling suggestions if it's just the first character that's wrong (or has an additional character added)? We have users querying for "eappointment" when they should just be searching for "appointment". I'd like to show "appointment" as a spelling suggestion for

Re: Error on DIH log

2015-11-26 Thread Gora Mohanty
On 27 November 2015 at 11:48, Midas A wrote: > Big Integer part is coming from mysql . So, show us that part of the DIH config. As Alex mentioned, most likely there is some error in the conversion: DIH seems to be getting a string rather than a BigInteger. >

Re: Error on DIH log

2015-11-26 Thread Alexandre Rafalovitch
Where does the BigInteger part comes from? Looks like serialisation mismatch. DIH is seeing just a string. If you can't fix this at the source, you may need a custom transformer or URP to post process this as a special case. Regards, Alex On 27 Nov 2015 12:42 am, "Midas A"

Error on DIH log

2015-11-26 Thread Midas A
Error: org.apache.solr.common.SolrException: ERROR: [doc=83629504] Error adding field 'master_id'='java.math.BigInteger:0' msg=For input string: "java.math.BigInteger:0" schema.xml How can i remove this error ? ~abhishek

Re: Error on DIH log

2015-11-26 Thread Midas A
Big Integer part is coming from mysql . use of transformer add latency while indexing ? On Fri, Nov 27, 2015 at 11:26 AM, Alexandre Rafalovitch wrote: > Where does the BigInteger part comes from? Looks like serialisation > mismatch. DIH is seeing just a string. > > If you

Re: [Faceting] Exact Value Faceting VS ID Faceting

2015-11-26 Thread Toke Eskildsen
On Wed, 2015-11-25 at 15:56 +, Alessandro Benedetti wrote: > I would like to have docValues because facets are going to be heavy on > those fields. > *Faceting approach * > *1) *Indexing the human readable field value Technically this will be a SORTED or SORTED_SET, which again means that a

Re: [Faceting] Exact Value Faceting VS ID Faceting

2015-11-26 Thread Alessandro Benedetti
Thanks Toke for the answer, let me comment inline : On 26 November 2015 at 08:32, Toke Eskildsen wrote: > On Wed, 2015-11-25 at 15:56 +, Alessandro Benedetti wrote: > > I would like to have docValues because facets are going to be heavy on > > those fields. > > >

Setting up Solr on multiple machines

2015-11-26 Thread Salman Ansari
Hi, I have seen the guide of setting up Solr on one machine as well as setting it up on multiple machines on Liunx. Is there a good guide of how to setup Solr on multiple machines on Windows Server with Zookeeper ensemble? My structure is as follows 1) 3 machines will have Zookeeper to create an

Re: Setting up Solr on multiple machines

2015-11-26 Thread Alessandro Benedetti
I think it should be straightforward following the Solr wiki : https://cwiki.apache.org/confluence/display/solr/Setting+Up+an+External+ZooKeeper+Ensemble I never played much in details with zookeeper ( never tried on a windows machine), but I assume it is windows compatible ( I can see binaries

OT: is Heliosearch discontinued?

2015-11-26 Thread Bernd Fehling
It is always interesting to see what other Search Engines are doing. So I just wanted to have a look at Heliosearch (http://heliosearch.org/) but nothing showed up. Is Heliosearch discontinued or only a hiccup in the internet? Bernd

Re: OT: is Heliosearch discontinued?

2015-11-26 Thread DVT
https://github.com/Heliosearch/heliosearch Last committment a year ago... that tells me something :-) heliosearch.com and heliosearch.org go to standard GoDaddy pages. Heliosearch was a fork that has apparently been dormant for a year already. Cheers, --Jürgen On 26.11.2015 14:26, Bernd

Re: OT: is Heliosearch discontinued?

2015-11-26 Thread Alexandre Rafalovitch
It is discontinued and most of the features had been rolled into Solr. So, if you did not pay attention to changes in various Solr 5.x releases, some innocent sounding features are actually giant drops from the Heliosearch period. :-) Newsletter and resources for Solr beginners and

Solr UI open source

2015-11-26 Thread Chaushu, Shani
Hi all, I want to build UI for Solr that get result to the user and also update the solr back (set for specific field) I start using ajax-solr because there is good tutorial and it's easy to use, but I didn't saw an example for update, and also I'm not sure the code is stable (no release in

Re: Solr UI open source

2015-11-26 Thread Alexandre Rafalovitch
You should not be exposing Solr directly to the user, that's like giving them a database admin account. Unless you REALLY know what you are doing. So, the Javascript UIs are mostly for internal purposes and for people to play with Solr. Therefore, usually, there is a server-side component that

Re: [Faceting] Exact Value Faceting VS ID Faceting

2015-11-26 Thread Yonik Seeley
On Thu, Nov 26, 2015 at 3:32 AM, Toke Eskildsen wrote: > If we had a hashing method String->long and guaranteed that there would > be no collisions (or we accepted the occasional faulty result), then we > could avoid the segment->global map as well as the centralized

Re: Solr UI open source

2015-11-26 Thread Doug Turnbull
Actually I disagree Alex. We build JS apps that talk straight to Solr all the time. However, we are sure to lock it down pretty heavily. Moreover, these cases almost never have sensitive information. You need to think through the worst case. As search is often a secondary artifact of a primary

Re: Solr UI open source

2015-11-26 Thread Alexandre Rafalovitch
I am happy to be corrected, but that repository says "This repository gives a basic outline to creating a functional reverse proxy with Nginx" as well as the famous last words ("e.t.c.") . Which is why I feel it is not exactly a turnkey solution I can recommend to a new Solr user. Is there an

Re: Solr UI open source

2015-11-26 Thread Doug Turnbull
Nope, it's more of a template. But I still think its simpler than coding up and deploying an API that acts as a relay to a search endpoint. Again, I don't think this is right for every use case. But we use it for http://solr.quepid.com In the nginx.conf, you need to basically update two spots #

Re: Solr UI open source

2015-11-26 Thread Doug Turnbull
That sounded defensive :) Just sharing our experience. I also don't mind being corrected, especially if there's an issue with the config here. Cheers -Doug On Thu, Nov 26, 2015 at 11:28 AM, Doug Turnbull < dturnb...@opensourceconnections.com> wrote: > Nope, it's more of a template. But I still

Re: Solr UI open source

2015-11-26 Thread Alexandre Rafalovitch
If it works for Quepid, it is good enough for me :-) I might actually try that for one of my upcoming projects where I do need a read-only Solr. But this is for read-only setup only. So, still not really useful for the original request's second part: "There is another option? Something that also

Re: Solr UI open source

2015-11-26 Thread Doug Turnbull
Oh right, yes I missed that. My fault. I definitely wouldn't open up the update portion! -Doug On Thu, Nov 26, 2015 at 11:51 AM, Alexandre Rafalovitch wrote: > If it works for Quepid, it is good enough for me :-) I might actually > try that for one of my upcoming projects

Re: Error on DIH log

2015-11-26 Thread Midas A
Following is my DIH config