Re: not getting any mails

2014-05-12 Thread Aman Tandon
Thanks Erick. With Regards Aman Tandon On Sun, May 11, 2014 at 9:48 AM, Erick Erickson wrote: > There was an infrastructure problem, _nobody_ was getting e-mails. I > think it's fixed now. > > But the backlog will take a while to work through. > > Erick > > On Sat, May 10, 2014 at 5:30 AM, Aman

spellcheck if docsfound below threshold

2014-05-12 Thread Jan Verweij - Reeleez
Hi, Is there a setting to only include spellcheck if the number of documents found is below a certain threshold? Or would we need to rerun the request with the spellcheck parameters based on the docs found? Kind regards, Jan Verweij

SWF content not indexed

2014-05-12 Thread Mauro Gregorio Binetti
Hi guys, how can I make it possibile to index content of SWF files? I'm using Solr 3.6.0. Regards, Mauro

Replica active during warming

2014-05-12 Thread lboutros
Dear All, we just finished the migration of a cluster from Solr 4.3.1 to Solr 4.6.1. With solr 4.3.1 a node was not considered as active before the end of the warming process. Now, with solr 4.6.1 a replica is considered as active during the warming process. This means that if you restart a repli

Re: Solrj problem

2014-05-12 Thread blach
any solution please :) -- View this message in context: http://lucene.472066.n3.nabble.com/Solrj-problem-tp4135030p4135046.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: DataImport using SqlEntityProcessor running Out of Memory

2014-05-12 Thread Shawn Heisey
On 5/9/2014 9:16 AM, O. Olson wrote: > I have a Data Schema which is Hierarchical i.e. I have an Entity and a number > of attributes. For a small subset of the Data - about 300 MB, I can do the > import with 3 GB memory. Now with the entire 4 GB Dataset, I find I cannot > do the import with 9 GB of

Re: Solrcore.properties variable question.

2014-05-12 Thread Shawn Heisey
On 5/8/2014 2:01 AM, Guido Medina wrote: > We have a couple of Solr servers acting as master and slave, and each > server have the same amount of cores, we are trying to configure the > solrcore.properties so that an script is able to add cores without > changing the solrcore.properties using a hac

Easises way to insatll solr cloud with tomcat

2014-05-12 Thread Aman Tandon
Hi, I tried to set up solr cloud with jetty which works fine. But in our production environment we uses tomcat so i need to set up the solr cloud with the tomcat. So please help me out to how to setup solr cloud with tomcat on single machine. Thanks in advance. With Regards Aman Tandon

Re: Website running Solr

2014-05-12 Thread Shawn Heisey
On 5/11/2014 10:55 AM, Olivier Austina wrote: > Is there a way to know if a website use Solr? Thanks. Paul's answer is correct. There is usually no way to know for sure, unless you ask the website operators. Secure implementations will not expose Solr to the outside world. If you see evidence t

SolrCloud - Highly Reliable / Scalable Resources?

2014-05-12 Thread Darren Lee
Hi everyone, We have been using Solr Cloud (4.4) for ~ 6 months now. Functionally its excellent but we have suffered several issues which always seem quite problematic to resolve. I was wondering if anyone in the community can recommend good resources / reading for setting up a highly scalable

Re: ContributorsGroup add request

2014-05-12 Thread Erick Erickson
Done. I think this was done a couple of days ago actually, but the mailing lists have been a bit messed up. On Sat, May 10, 2014 at 5:35 PM, Jim Martin wrote: > Greetings- > >Please add me the ContributorsGroup; I've got some Solr icons I'd like to > suggest to the community. Perhaps down the

Re: retreive all the fields in join

2014-05-12 Thread Erick Erickson
Any time you find yourself trying to use Solr like a DB, stop. Solr joins are _not_ DB joins, the data from the "from" core is not returned (I think there are a few special cases where you can make this happen though). Try denormalizing your data if at all possible, that's what Solr docs best...

Re: Easises way to insatll solr cloud with tomcat

2014-05-12 Thread Erick Erickson
What have you already tried to solve the problem yourself? What are you having difficulty with? I suggest you review: http://wiki.apache.org/solr/UsingMailingLists Best, Erick On Mon, May 12, 2014 at 12:54 AM, Aman Tandon wrote: > Hi, > > I tried to set up solr cloud with jetty which works fin

Re: retreive all the fields in join

2014-05-12 Thread Aman Tandon
Yeah i understand but i got the requirement from the top management, requirements are: core1: in this we want to keep the supplier activity points case 2: we want to boost those records which are present in core1 by the amount of supplier activity points. I know we can keep that supplier score in

solr 4.8 Leader Problem

2014-05-12 Thread adfel70
*Solr &Collection Info:* Solr 4.8 , 4 shards, 3 replicas per shard, 30-40 million docs per shard. Process: 1. Indexing 100-200 docs per second. 2. Doing Pkill -9 java to 2 replicas (not the leader) in shard 3 (while indexing). 3. Indexing for 10-20 minutes and doing hard commit. 4. Doing Pkill

Spell check [or] Did you mean this with Phrase suggestion

2014-05-12 Thread vanitha venkatachalam
Hi, We need a spell check component that suggest actual full phrase not just words. Say, we have list of brands : "Nike corporation", "Samsung electronics" , when I search for "tamsong", I like to get suggestions as "samsung electronics" ( full phrase ) not just "samsung" ( words) Please help. --

URLDataSource : indexing from other Solr servers

2014-05-12 Thread helder.sepulveda
I been trying to index data from other solr servers but the import always shows: Indexing completed. Added/Updated: 0 documents. Deleted 0 documents. Requests: 1, Fetched: 0, Skipped: 0, Processed My data config looks like this: Any help will be greatly appreciated -- View this message in co

Re: Too many documents Exception

2014-05-12 Thread Greg Walters
Looks like you've hit an internal limitation of Lucene, see http://lucene.apache.org/core/3_0_3/fileformats.html#Limitations: When referring to term numbers, Lucene's current implementation uses a Java int to hold the term index, which means the maximum number of unique terms in any sin

Re: retreive all the fields in join

2014-05-12 Thread Walter Underwood
Top management has given requirements that force a broken design. They are requiring something that is impossible with Solr. 1. Flatten the data. You get one table, no joins. 2. 12M records is not a big Solr index. That should work fine. 3. If the supplier activity points are updated frequently

Re: URLDataSource : indexing from other Solr servers

2014-05-12 Thread helder.sepulveda
Here is the data config: http://slszip11.as.homes.com/solr/select?q=*:*"; processor="XPathEntityProcessor" forEach="/response/result/doc" transformer="DateFormatTransformer">

Re: URLDataSource : indexing from other Solr servers

2014-05-12 Thread helder.sepulveda
I tested calling the URL using curl right on the server, and I get a valid response and the correct content -- View this message in context: http://lucene.472066.n3.nabble.com/URLDataSource-indexing-from-other-Solr-servers-tp4135321p4135333.html Sent from the Solr - User mailing list archive a

autowarming queries

2014-05-12 Thread Joshi, Shital
Hi, How many auto warming queries are supported per collection in Solr4.4 and higher? We see one out of three queries in log when new searcher is created. Shouldn't it print all searcher queries? Thanks!

RE: autowarming queries

2014-05-12 Thread Joshi, Shital
We added an id (searcher3) in each searcher but it never gets printed in log file. Does Solr internally massages the searcher queries? _ From: Joshi, Shital [Tech] Sent: Monday, May 12, 2014 11:27 AM To: 'solr-user@lucene.apache.org' Subject: autowarmin

Re: retreive all the fields in join

2014-05-12 Thread Erick Erickson
Well, you might explain to management that this isn't what Solr is built to do. 12M records is actually quite small by Solr standards. I'd recommend de-normalizing and demonstrating a working solution that uses Solr as it's intended rather than how senior management wishes it were. It'll be a lot

Re: Easises way to insatll solr cloud with tomcat

2014-05-12 Thread Aman Tandon
Can anybody help me out?? With Regards Aman Tandon On Mon, May 12, 2014 at 1:24 PM, Aman Tandon wrote: > Hi, > > I tried to set up solr cloud with jetty which works fine. But in our > production environment we uses tomcat so i need to set up the solr cloud > with the tomcat. So please help me o

Sorting by custom function query

2014-05-12 Thread Emanuele Filannino
Hi there, I'm running into some issues developing a custom function query using Solr 3.6.2. My goal is to be able to implement a custom sorting technique. I have a field called daily_prices_str, it is a single value str. Example: 2014-05-01:130 2014-05-02:130 2014-05-03:130 2014-05-04:13

What is the usage of solr.NumericPayloadTokenFilterFactory

2014-05-12 Thread ienjreny
Dears: Can any body explain at easy way what is the benefits of solr.NumericPayloadTokenFilterFactory and what is acceptable values for typeMatch Thanks in advance -- View this message in context: http://lucene.472066.n3.nabble.com/What-is-the-usage-of-solr-NumericPayloadTokenFilterFactory-tp4

Falling back to SlowFuzzyQuery

2014-05-12 Thread Brian Panulla
I'm working on upgrading our Solr 3 applications to Solr 4. The last piece of the puzzle involves the change in how fuzzy matching works in the new version. I have to rework how a key feature of our application is implemented to get the same behavior with the new FuzzyQuery as it has in the old ver

Re: SolrCloud - Highly Reliable / Scalable Info

2014-05-12 Thread Aman Tandon
Hi, Can i ask you a question are you using the solr with tomcat or jetty? With Regards Aman Tandon On Mon, May 12, 2014 at 9:04 PM, Darren Lee wrote: > Hi everyone, > > We have been using Solr Cloud (4.4) for ~ 6 months now. Functionally its > excellent but we have suffered several issues whi

SolrCloud - Highly Reliable / Scalable Info

2014-05-12 Thread Darren Lee
Hi everyone, We have been using Solr Cloud (4.4) for ~ 6 months now. Functionally its excellent but we have suffered several issues which always seem quite problematic to resolve. I was wondering if anyone in the community can recommend good resources / reading for setting up a highly scalable

Re: Indexing PDF in Apache Solr 4.8.0 - Problem.

2014-05-12 Thread Siegfried Goeschl
Hi Vignesh, can you check your SOLR Server Log?! Not all PDF documents on this planet can be processed using Tikka :-) Cheers, Siegfried Goeschl On 07 May 2014, at 09:40, vignesh wrote: > Dear Team, > > I am Vignesh using the latest version 4.8.0 Apache Solr and am > Indexing my

Re: not getting any mails

2014-05-12 Thread Oliver Schrenk
Something still seems amiss. I unsubscribed from the mailing list and still get mails. On 11 May 2014, at 14:31, Ahmet Arslan wrote: > > > > Hi Amon, > > Its not just you. There was a general problem with Apache mailing lists. But > it is fixed now. > Please see for more info : https://bl

Re: Solr + SPDY

2014-05-12 Thread harspras
Hi Vinay, I have been trying to setup a similar environment with SPDY being enabled for Solr inter shard communication. Did you happen to have been able to do it? I somehow cannot use SolrCloud with SPDY enabled in jetty. Regards, Harsh Prasad -- View this message in context: http://lucene.47

Re: retreive all the fields in join

2014-05-12 Thread David Philip
Hi Aman, I think it is possible. 1. Use fl parameter. 2. Add all the 4 fields in both the schemas[schemas of core 1 and 2]. 3. While querying use &fl=id,name,type,page. It will return all the fields. The document that has no data for this field, the field will be an empty string. Ex: {id:111,na

Re: autowarming queries

2014-05-12 Thread Erick Erickson
First define an auto-warming query :)... firstSearcher queries are fired when the server is started newSearcher queries are fired when a new searcher is opened, i.e. when a commit (hard when openSeracher=true or soft) happens. Let's see your configuration too where you think you're setting up th

Re: Website running Solr

2014-05-12 Thread Gora Mohanty
On 11 May 2014 23:39, Ahmet Arslan wrote: > > Hi, > > Some site owners put themselves here : > > https://wiki.apache.org/solr/PublicServers Thanks for the reminder: I need to add some sites there. If you got it, flaunt it :-) > > > Besides, I would try *:* match all docs query. Won't work. Many

Re: Physical Files v. Reported Index Size

2014-05-12 Thread Greg Walters
See which index directory is actually in use by catting the index.properties file, verify nothing is using the others via lsof and you're safe to delete them. Thanks, Greg On May 6, 2014, at 10:34 PM, Darrell Burgan wrote: > Hello all, I’m trying to reconcile what I’m seeing in the file syste

Re: URLDataSource : indexing from other Solr servers

2014-05-12 Thread helder.sepulveda
Just in case the url is not available from outside my network, here is how the url response looks like: 0 1007 *:* 1518 INDIANA CT, IRVING, TX Central 200600 0.31 230690 170510 No Basement 1518 INDIANA CT IRVING US TX 75060 2.0 4 Dallas-Fort Worth-Arlington IRVING Frame Dallas 38300 2014-