Re: Need of hadoop

2014-07-07 Thread search engn dev
It is written here -- View this message in context: http://lucene.472066.n3.nabble.com/Need-of-hadoop-tp4145846p4146033.html Sent from the Solr - User mailing list archive at Nabble.com.

Understanding query behaviour in LBHttpSolrServer

2014-07-17 Thread search engn dev
I just want to understand query flow and how load balancing works in case of LBHttpSolrServer. We have setup SolrCloud with one collection, and that collection has 4 shards and each shard has two nodes i.e one master and one replica. I have configured LBHttpSolrServer as below. SolrServer lbHttpS

SolrCloud performance issues regarding hardware configuration

2014-07-17 Thread search engn dev
I need help regarding hardware configuration of my SolrCloud setup. most of the queries to our SolrCloud are boolean queries involving 6-7 fields and spatial and facet queries. currently for facet queries solr throws OOM errors. below are my solrcloud stats, solr version 4.6.1 1 collection : 4 sha

Re: Understanding query behaviour in LBHttpSolrServer

2014-07-17 Thread search engn dev
Thanks Shawn, I am also not sure about query flow , >From my understanding solr and solrj works as below, 1. LBHttpSolrServer keeps pinging above list of servers and maintains list of live servers. 2. Every time query arives it picks one server from the list (round-robin fashion) 3. Sends que

RE: SolrCloud performance issues regarding hardware configuration

2014-07-18 Thread search engn dev
out of 700 million documents 95-97% values are unique approx. My facet query is : http://localhost:8983/solr/select?q=*:*&rows=0&facet=true&facet.limit=1&facet.field=user_digest Above query throws OOM exception as soon as fire it to solr. -- View this message in context: http://lucene.

Re: SolrCloud performance issues regarding hardware configuration

2014-07-20 Thread search engn dev
Thanks Erick, /"So your choices are either to increase memory (a lot) or not do this. It's a valid question whether this is useful information to present to a user (or are you doing some kind of analytics here?). "/ Yes, You are right my facet queries are for text analytic purpose. Users will

how many shards required to search data

2014-02-20 Thread search engn dev
Data size is 250 GB of small records. each record is of around 0.3kb size. It consists around 1 billion records. my index has 20 different fields. . Majorly queries will be very simple or spacial queries mainly on on 2-3 fields. all 20 fields will be stored. Any suggestions on how many shards will

Re: how many shards required to search data

2014-02-20 Thread search engn dev
Shard1 config : Config: 32GB RAM, 4 core Shard2 config : Config: 32GB RAM, 4 core -- View this message in context: http://lucene.472066.n3.nabble.com/how-many-shards-required-to-search-data-tp4118715p4118717.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: how many shards required to search data

2014-02-21 Thread search engn dev
As you suggestedI have indexed 12million sample records in solr on hardware of 8gb ram. Size of index is 3gb. can i extrapolate this to predict actual size of index.? -- View this message in context: http://lucene.472066.n3.nabble.com/how-many-shards-required-to-search-data-tp4118715p4118753.ht

Knowing shard value of result

2014-02-26 Thread search engn dev
I have setup solr cloud of two shards and two replicas. I am using solrj for communicating with solr. We are using CloudSolrServer for searching in solr cloud. below is my code String zkHost = "host1:2181,host1:2182,host1:2183,host1:2184,host1:2185"; CloudSolrSe

Re: Knowing shard value of result

2014-02-26 Thread search engn dev
Thanks iorixxx, SolrQuery parameters = new SolrQuery(); parameters.set("q","*:*"); parameters.set("fl","Id,STATE_NAME,[shard]"); parameters.set("distrib","true"); QueryResponse response = server.query(parameters); It's working fine now. -- View this message in context: http://lucene.472066.n3

Solrmeter with solr 4.6.1

2014-02-27 Thread search engn dev
Has anybody used latest solrmeter with solr 4.6.1? because I am getting following error whenever i try to connect to solr. [Thread-384]|ERROR|[com.plugtree.solrmeter.model.statistic.CacheHistoryStatistic]|15:02:52,509 | Could not update statistic com.plugtree.solrmeter.model.exception.StatisticCo

Re: Solrmeter with solr 4.6.1

2014-02-27 Thread search engn dev
Thanks Shawn, thanks for the pointer. I will try to checkout latest trunk from solrmeter and will see if i can patch it myself. -- View this message in context: http://lucene.472066.n3.nabble.com/Solrmeter-with-solr-4-6-1-tp4120082p4120092.html Sent from the Solr - User mailing list archive

Re: Solr is NoSQL database or not?

2014-03-01 Thread search engn dev
Thank you all for such nice thoughts. Got some more information from here -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-is-NoSQL-database-or-n

What is mean by Index Searcher?

2014-03-06 Thread search engn dev
I am reading apache solr reference guide and it has lines as below ". Solr caches are associated with a specific instance of an Index Searcher, a specific view of an index that doesn't change during the lifetime of that searcher. As long as that Index Searcher is being used, any items in its c

Re: What is mean by Index Searcher?

2014-03-07 Thread search engn dev
Thanks Alex, But what is mean by "...lifetime of that searcher." Is is lifetime of any particular query or what.? Sorry but i am not able to understand this. :( -- View this message in context: http://lucene.472066.n3.nabble.com/What-is-mean-by-Index-Searcher-tp4121898p4121912.html Sent from

SolrJ : fieldcontent from (multiple) file(s)

2014-09-12 Thread Clemens Wyss DEV
First of all I'd like to say hello to the Solr world/community ;) So far we have been using Lucene as-is and now intend to go for Solr. Say I have a document which in one field should have the content of a file (indexed only, not stored), in order to make the document searchable due to the fi

AW: SolrJ : fieldcontent from (multiple) file(s)

2014-09-12 Thread Clemens Wyss DEV
---Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Freitag, 12. September 2014 11:30 An: 'solr-user@lucene.apache.org' Betreff: SolrJ : fieldcontent from (multiple) file(s) First of all I'd like to say hello to the Solr world/community ;) So f

AW: SolrJ : fieldcontent from (multiple) file(s)

2014-09-12 Thread Clemens Wyss DEV
and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 On 12 September 2014 06:53, Clemens Wyss DEV wrote: > Looks like I haven't finished " I know" > I know I could

AW: SolrJ : fieldcontent from (multiple) file(s)

2014-09-12 Thread Clemens Wyss DEV
do just that, as well as extract DB contents etc. http://searchhub.org/2012/02/14/indexing-with-solrj/ Best, Erick On Fri, Sep 12, 2014 at 5:55 AM, Clemens Wyss DEV wrote: > Thanks Alex, >> Do you just care about document content? > content only. > > The documents (not nece

AW: SolrJ : fieldcontent from (multiple) file(s)

2014-09-13 Thread Clemens Wyss DEV
Thanks for all you advices and thoughts. The "client" in our case is/are the tomcats. To be more precise the webapps running in the tomcats. These should serve http request. I'd also like to note that it's he batch-updates that in my opinion cause load (cpu and memory (dependeing on the pdf)) w

Solr(j) API for manipulating the schema(.xml)?

2014-09-17 Thread Clemens Wyss DEV
Is there an API to manipulate/consolidate the schema(.xml) of a Solr-core? Through SolrJ? Context: We already have a generic indexing/searching framework (based on lucene) where any component can act as a so called IndexDataPorvider. This provider delivers the field-types and also the entities

AW: Solr(j) API for manipulating the schema(.xml)?

2014-09-18 Thread Clemens Wyss DEV
can upload the schema to ZooKeeper and have it automatically distributed to all the nodes though. Best, Erick On Wed, Sep 17, 2014 at 2:28 AM, Clemens Wyss DEV wrote: > Is there an API to manipulate/consolidate the schema(.xml) of a Solr-core? > Through SolrJ? > > Context:

slorj -> httpclient 4, but we already have httpclient 3 in use

2014-09-18 Thread Clemens Wyss DEV
I doing initial steps with solrj which is based on httpclient 4. Unfortunately parts of our framework are based on httpclient 3. So when I instantiate an HttpSolrServer I run into: java.lang.VerifyError: Cannot inherit from final class ... at org.apache.http.impl.client.DefaultHttpClien

AW: slorj -> httpclient 4, but we already have httpclient 3 in use

2014-09-18 Thread Clemens Wyss DEV
r might change to a change in the project Cheers, Siegfried Goeschl On 18.09.14 15:08, Clemens Wyss DEV wrote: > I doing initial steps with solrj which is based on httpclient 4. > Unfortunately parts of our framework are based on httpclient 3. > So when I instantiate an HttpSolrS

AW: AW: slorj -> httpclient 4, but we already have httpclient 3 in use

2014-09-18 Thread Clemens Wyss DEV
eeded to do it again. I was on a similar situation (well my company) >> and I had to suffer such migration (not my company but myself since >> I'm the one that keeps all those things up to date) >> >> Best regards, >> >> Guido. >> >> On 18/09/1

with wildcard-source?

2014-09-21 Thread Clemens Wyss DEV
is there a way to use with a wildcard-source?  For example to copy all fields of a certain dynamic field type:  ...

AW: with wildcard-source?

2014-09-21 Thread Clemens Wyss DEV
7;s not much to go on except guesswork. Best, Erick On Sun, Sep 21, 2014 at 2:47 AM, Clemens Wyss DEV wrote: > is there a way to use with a wildcard-source? > For example to copy all fields of a certain dynamic field type: > > ... >

AW: AW: AW: slorj -> httpclient 4, but we already have httpclient 3 in use

2014-09-21 Thread Clemens Wyss DEV
gfried Goeschl > > On 19.09.14 07:31, Clemens Wyss DEV wrote: >> I'd like to mention, that substituting the httpcore.jar with the >> latest (4.3) "sufficed"... >> >> -Ursprüngliche Nachricht- >> Von: Guido Medina [mailto:guido.med..

Search multiple cores, one result

2014-09-22 Thread Clemens Wyss DEV
As mentioned in antoher post we (already) have a (Lucene-based) generic indexing framework which allows any source/entity to provide indexable/searchable data. Sources may be: pages events products customers ... As their names imply they have nothing in common ;) Never the less we'd like to sear

(auto)suggestions, but ony from a "filtered" set of documents

2014-09-25 Thread Clemens Wyss DEV
What I'd like to do is http://localhost:8983/solr/solrpedia/suggest?q=atm&qf=source: Through qf (or however the parameter shall be called) I'd like to restrict the suggestions to documents which fit the given qf-query. I need this filter if (as posted in a previous thread) I intend to put "diff

/suggest through SolrJ?

2014-09-25 Thread Clemens Wyss DEV
Am I right that I cannot call /suggest (i.e. the corresponding RequestHandler) through SolrJ? What is the preferreded way to "call" Solr handlers/operations not supported by SolrJ from Java? Through new SolrJ Request-classes?

AW: /suggest through SolrJ?

2014-09-25 Thread Clemens Wyss DEV
Thx to you two. Just in case anybody else is trying to do "this". The following SolrJ code corresponds to the http request GET http://localhost:8983/solr/solrpedia/suggest?q=atmo of "Solr in Action" (chapter 10): ... SolrServer server = new HttpSolrServer("http://localhost:8983/solr/solrpedia";)

AW: (auto)suggestions, but ony from a "filtered" set of documents

2014-09-26 Thread Clemens Wyss DEV
) results from more than one core? In Lucene I was able to use a MultiIndexReader (one IndexReaders per index) -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Donnerstag, 25. September 2014 10:24 An: solr-user@lucene.apache.org Betreff: (auto

AW: (auto)suggestions, but ony from a "filtered" set of documents

2014-10-24 Thread Clemens Wyss DEV
into a separated core. Greetings, On Sep 26, 2014, at 8:49 AM, Clemens Wyss DEV wrote: > Either my intention is dumb (pls let me know ;)), or there is no answer to > this problem. If so, I will have to index my sources into separate cores. > But then the questions arise: > a) h

AW: (auto)suggestions, but ony from a "filtered" set of documents

2014-10-24 Thread Clemens Wyss DEV
Possibly making use of FilterAtomicReader? http://lucene.apache.org/core/4_7_0/core/org/apache/lucene/index/FilterAtomicReader.html -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Freitag, 24. Oktober 2014 18:31 An: solr-user@lucene.apache.org

AW: AW: (auto)suggestions, but ony from a "filtered" set of documents

2014-10-26 Thread Clemens Wyss DEV
like to use for suggestions, then you could search only on this field and filter by any other field in your schema, and take advantage on the EdgeNGramFilter placed in the new search field. Regards, - Original Message - From: "Clemens Wyss DEV" To: solr-user@lucene.apache.org

AW: AW: AW: (auto)suggestions, but ony from a "filtered" set of documents

2014-10-26 Thread Clemens Wyss DEV
ends, which multiplexes different input fields to a single suggester. It also manages NRT updates to AnalyzingInfixSuggester I haven't had a chance to up good docs or generalize very much, but if you have questions feel free to get in touch. -Mike On 10/26/14 3:52 AM, Clemens Wyss DEV wrote:

CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-24 Thread Clemens Wyss DEV
Given the following directory/file structure .../solrhome .../solrhome/solr.xml .../solrhome/config/ .../solrhome/config/schema.xml .../solrhome/config/solrconfig.xml .../solrhome/cores How can I programmatically (CoreContainer) create a new core below .../solrhome/cores that makes use of solrco

AW: CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-24 Thread Clemens Wyss DEV
popularizers community: https://www.linkedin.com/groups?gid=6713853 On 24 November 2014 at 10:14, Clemens Wyss DEV wrote: > Given the following directory/file structure > > .../solrhome > .../solrhome/solr.xml > .../solrhome/config/ > .../solrhome/config/schema.xml > .../solrhome/

AW: CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-24 Thread Clemens Wyss DEV
gards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 On 24 November 2014 at 10:43, Clemens Wyss DEV wrote: > Thanks fort he quick repl

AW: CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-25 Thread Clemens Wyss DEV
On Mon, Nov 24, 2014 at 7:58 AM, Clemens Wyss DEV wrote: > Looks like 4.7.2 does not have this const. Another reason to switch to > 4.10 (and java 8 ;) ) > > -Ursprüngliche Nachricht- > Von: Alexandre Rafalovitch [mailto:arafa...@gmail.com] > Gesendet: Montag, 24. No

AW: CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-25 Thread Clemens Wyss DEV
popularizers community: https://www.linkedin.com/groups?gid=6713853 On 24 November 2014 at 10:43, Clemens Wyss DEV wrote: > Thanks fort he quick reply. > But how do I hand in the configSet to use. I guess through the CoreDescriptor? > > -Ursprüngliche Nachricht- >

AW: CoreContainer : create new cores reusing/sharing solrconfig.xml and schema.xml

2014-11-26 Thread Clemens Wyss DEV
"/test", coreProps ); 2) solr.xml ${configSetBaseDir:c:/tmp/solr/configsets} -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Dienstag, 25. November 2014 10:36 An: solr-user@lucene.apache.org Betreff: AW: CoreContainer : create new cores

Keeping capitalization in suggestions?

2014-12-04 Thread Clemens Wyss DEV
When I index a text such as "Chamäleon" and look for suggestions for "chamä" and/or "Chamä", I'd expect to get "Chamäleon" (uppercased). But what happens is If lowecasefilter (see below (1)) set "chamä" returns "chamäleon" "Chamä" does not match If lowecasefilter (1) not set "Chamä" returns "Ch

AW: Keeping capitalization in suggestions?

2014-12-04 Thread Clemens Wyss DEV
msoko...@safaribooksonline.com] Gesendet: Donnerstag, 4. Dezember 2014 14:05 An: solr-user@lucene.apache.org Betreff: Re: Keeping capitalization in suggestions? Have a look at AnalyzingInfixSuggester - it does what you want. -Mike On 12/4/14 3:05 AM, Clemens Wyss DEV wrote: > When I index a text such as &q

AW: Keeping capitalization in suggestions?

2014-12-04 Thread Clemens Wyss DEV
Enter the "factory"! ;) org.apache.solr.spelling.suggest.fst.AnalyzingInfixLookupFactory -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Donnerstag, 4. Dezember 2014 14:46 An: solr-user@lucene.apache.org Betreff: AW: Keeping capital

AW: Keeping capitalization in suggestions?

2014-12-08 Thread Clemens Wyss DEV
n suggestions? Have a look at AnalyzingInfixSuggester - it does what you want. -Mike On 12/4/14 3:05 AM, Clemens Wyss DEV wrote: > When I index a text such as "Chamäleon" and look for suggestions for "chamä" > and/or "Chamä", I'd expect to get "Chamäleon&qu

AW: AW: Keeping capitalization in suggestions?

2014-12-09 Thread Clemens Wyss DEV
rifork.com/2012/02/15/different-ways-to-make-auto-suggestions-with-solr/ http://www.cominvent.com/2012/01/25/super-flexible-autocomplete-with-solr/ Ahmet On Monday, December 8, 2014 5:43 PM, Clemens Wyss DEV wrote: Allthough making use of AnalyzingInfixSuggester I still getting "ei

transactions@Solr(J)

2015-01-20 Thread Clemens Wyss DEV
http://stackoverflow.com/questions/10805117/solr-transaction-management-using-solrj Is it true, that a SolrServer-instance denotes a "transaction context"? Say I have two concurrent threads, each having a SolrServer-instance "pointing" to the same core. Then each thread can add/update/delete do

TermsComonent, buildOnCommit?

2015-01-20 Thread Clemens Wyss DEV
Does the TermsComponent (/terms) have something like buildOnCommit ? Or is it always up-to-date (<- my unit tests deny this)?

AW: TermsComonent, buildOnCommit?

2015-01-20 Thread Clemens Wyss DEV
Commit? Hi, Deleted terms could confuse you. commit with expunge deletes or optimise will purge deleted terms. Ahmet On Tuesday, January 20, 2015 1:03 PM, Clemens Wyss DEV wrote: Does the TermsComponent (/terms) have something like buildOnCommit ? Or is it always up-to-date (<- my unit t

AW: AW: TermsComonent, buildOnCommit?

2015-01-20 Thread Clemens Wyss DEV
[mailto:iori...@yahoo.com.INVALID] Gesendet: Dienstag, 20. Januar 2015 13:14 An: solr-user@lucene.apache.org Betreff: Re: AW: TermsComonent, buildOnCommit? Hi, curl http://localhost:8983/solr/core/update?commit=true&expungeDeletes=true ahmet On Tuesday, January 20, 2015 1:51 PM, Clemens Wyss DEV w

AW: AW: AW: TermsComonent, buildOnCommit?

2015-01-20 Thread Clemens Wyss DEV
solrJ workaround. Ahmet On Tuesday, January 20, 2015 2:22 PM, Clemens Wyss DEV wrote: Thx, but sorry for asking: what is the SolrJ corresponding command? SolrServer#commit() SolrServer# commit( boolean waitFlush, boolean waitSearcher ) SolrServer# commit( boolean waitFlush, boolean

AW: transactions@Solr(J)

2015-01-20 Thread Clemens Wyss DEV
.org Betreff: Re: transactions@Solr(J) On 1/20/2015 5:18 AM, Clemens Wyss DEV wrote: > http://stackoverflow.com/questions/10805117/solr-transaction-managemen > t-using-solrj Is it true, that a SolrServer-instance denotes a > "transaction context"? > > Say I have two concurrent t

AW: AW: transactions@Solr(J)

2015-01-20 Thread Clemens Wyss DEV
AM, Clemens Wyss DEV wrote: > Thanks Mike, >> but a key difference is that when one client commits, all clients >> will see the updates > That's ok. > > What about the -setting(s) in solrconfig.xml. Doesn't this mean > that after adding x elements (or after

AW: AW: AW: transactions@Solr(J)

2015-01-21 Thread Clemens Wyss DEV
ar 2015 15:24 An: solr-user@lucene.apache.org Betreff: Re: AW: AW: transactions@Solr(J) On 1/20/2015 11:42 PM, Clemens Wyss DEV wrote: > But then what happens if: > Autocommit is set to 10 docs > and > I add 11 docs and then decide (due to an exception?) to rollback. > > Will o

SuggestStopFilter not usable in Solr 4.10.x?

2015-01-26 Thread Clemens Wyss DEV
https://issues.apache.org/jira/browse/LUCENE-5820 Due to the missing factory the SuggestStopFilter is not "usable" before Solr/Lucene 5, right? Any plan on when Solr 5 will appear? How can I get hold of Solr/Lucene 5?

CoreContainer#createAndLoad, existing cores not loaded

2015-01-28 Thread Clemens Wyss DEV
My problem: I create cores dynamically using container#create( CoreDescriptor ) and then add documents to the very core(s). So far so good. When I restart my app I do container = CoreContainer#createAndLoad(...) but when I then call container.getAllCoreNames() an empty list is returned. What core

AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-28 Thread Clemens Wyss DEV
-user@lucene.apache.org Betreff: Re: CoreContainer#createAndLoad, existing cores not loaded On 1/28/2015 8:52 AM, Clemens Wyss DEV wrote: > My problem: > I create cores dynamically using container#create( CoreDescriptor ) and then > add documents to the very core(s). So far so go

AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-28 Thread Clemens Wyss DEV
BTW: None of my core folders contains a core.properties file ... ? Could it be due to the fact that I am (so far) running only EmbeddedSolrServer, hence no real Solr-Server? -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Donnerstag, 29. Januar

AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-29 Thread Clemens Wyss DEV
https://issues.apache.org/jira/browse/SOLR-6718 looks like I am not alone with my "weird" questions/ideas ;) And I should really switch over to 5 ;) -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Donnerstag, 29. Januar 2015 08:08 An:

Building Solr 5 from svn sources

2015-01-29 Thread Clemens Wyss DEV
Looks like trunk is Solr 6? Should I build Solr 5 from http://svn.apache.org/repos/asf/lucene/dev/branches/branch_5x

AW: Building Solr 5 from svn sources

2015-01-29 Thread Clemens Wyss DEV
lucene_solr_5_0 http://mail-archives.apache.org/mod_mbox/lucene-dev/201501.mbox/%3CCAKiERN4-qbj7BF%3DJgui4xUFKujwuP%2BodkZPesVT51xnXG1om_w%40mail.gmail.com%3E 2015-01-29 19:29 GMT+09:00 Clemens Wyss DEV : > Looks like trunk is Solr 6? > Should I build Solr 5 from > http://svn.apache.org/repos/a

AW: Building Solr 5 from svn sources

2015-01-29 Thread Clemens Wyss DEV
Why are solr*jars not being built? All others (including lucene) are built. -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Donnerstag, 29. Januar 2015 13:47 An: solr-user@lucene.apache.org Betreff: AW: Building Solr 5 from svn sources Thx

AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-29 Thread Clemens Wyss DEV
oad, existing cores not loaded On 1/29/2015 12:08 AM, Clemens Wyss DEV wrote: > Thx Shawn. I am running latest-greatest Solr (4.10.3) Solr home is > e.g. > /opt/webs//WebContent/WEB-INF/solr > the core(s) reside in > /opt/webs//WebContent/WEB-INF/solr/cores > Should these be found

AW: AW: Building Solr 5 from svn sources

2015-01-29 Thread Clemens Wyss DEV
uar 2015 18:13 An: solr-user@lucene.apache.org Betreff: Re: AW: Building Solr 5 from svn sources On 1/29/2015 10:03 AM, Clemens Wyss DEV wrote: > Why are solr*jars not being built? All others (including lucene) are built. What steps are you taking, and what is not there that you expect to be there? Thanks, Shawn

AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-29 Thread Clemens Wyss DEV
going the "bleeding edge"-way! -Ursprüngliche Nachricht- Von: Shawn Heisey [mailto:apa...@elyograg.org] Gesendet: Donnerstag, 29. Januar 2015 18:10 An: solr-user@lucene.apache.org Betreff: Re: AW: CoreContainer#createAndLoad, existing cores not loaded On 1/29/2015 12:13 AM, Clemen

AW: AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-29 Thread Clemens Wyss DEV
etreff: Re: AW: AW: CoreContainer#createAndLoad, existing cores not loaded On 1/29/2015 10:15 AM, Clemens Wyss DEV wrote: >> to put your solr home inside the extracted WAR > We are NOT using war's > >> coreRootDirectory > I don't have this property in my sorl.xml > >

AW: AW: AW: CoreContainer#createAndLoad, existing cores not loaded

2015-01-30 Thread Clemens Wyss DEV
"coreContainer.getCoresLocator().create(coreContainer, dcore);" When doing the two calls: a) Core.properties is being created AND b) the cores are being loaded upon container-startup ;) :-) -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: F

How to retrive all terms with their frequency in that website.

2013-02-21 Thread search engn dev
I have indexed data of 10 websites in solr. Now i want to dump data of each website with following format : [Terms,Frequency of terms in that website ,IDF] Can i do this with solr admin, or i need to write any script for that? -- View this message in context: http://lucene.472066.n3.nabble.co

Re: Solr Design question on spatial search

2012-03-01 Thread Venu Gmail Dev
I don't think Spatial search will fully fit into this. I have 2 approaches in mind but I am not satisfied with either one of them. a) Have 2 separate indexes. First one to store the information about all the cities and second one to store the retail stores information. Whenever user searches fo

Re: Solr Design question on spatial search

2012-03-02 Thread Venu Gmail Dev
mple distance > will work just > fine. You can index both city and store info in the same index and > restrict, say, facets > (or, indeed search results) by fq clause (e.g. fq=type:city or fq=type:store). > > Or I'm completely missing the boat here. > > Best > Erick

Re: Difference between two solr indexes

2012-04-17 Thread search engn dev
Thanks Pawel Rog for much needed reply, i'll give try and let u know. -- View this message in context: http://lucene.472066.n3.nabble.com/Difference-between-two-solr-indexes-tp3916328p3918996.html Sent from the Solr - User mailing list archive at Nabble.com.

Hunspell stemmer solr 3.4

2012-05-14 Thread search engn dev
I am currently using solr 3.4 in my application, Currently i cant upgrade solr to 3.5 due to some problem. I want to use hunspell stemmer in solr 3.4 , for doing this which all changes i need to make. -- View this message in context: http://lucene.472066.n3.nabble.com/Hunspell-stemmer-solr-3-4-tp

Solr suggestions: why are exact matches omitted

2018-08-30 Thread Clemens Wyss DEV
Given the following configuration: ... suggest_word_fuzzy org.apache.solr.spelling.suggest.Suggester org.apache.solr.spelling.suggest.fst.FuzzyLookupFactory true _my_suggest_word 2

AW: Solr suggestions: why are exact matches omitted

2018-08-30 Thread Clemens Wyss DEV
Or do the spellcheck results give an indication that "11000.35" has an exact match? -Ursprüngliche Nachricht- Von: Clemens Wyss DEV Gesendet: Donnerstag, 30. August 2018 18:01 An: 'solr-user@lucene.apache.org' Betreff: Solr suggestions: why are exact matche

AW: Solr suggestions: why are exact matches omitted

2018-09-03 Thread Clemens Wyss DEV
Sorry for not giving up on this issue: is this "behavior" a feature or a bug? -Ursprüngliche Nachricht- Von: Clemens Wyss DEV Gesendet: Donnerstag, 30. August 2018 18:01 An: 'solr-user@lucene.apache.org' Betreff: Solr suggestions: why are exact matches omitted

AW: Solr suggestions: why are exact matches omitted

2018-09-03 Thread Clemens Wyss DEV
then it's a feature of spellchecking -Ursprüngliche Nachricht- Von: Mikhail Khludnev Gesendet: Montag, 3. September 2018 13:17 An: solr-user Betreff: Re: Solr suggestions: why are exact matches omitted I'm afraid only thorough debugging might answer. On Mon, Sep 3, 2018 at 1

6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads

2018-10-21 Thread Clemens Wyss DEV
Just upgrading from 6.6 to 7.5 and am now seeing many "Connection evcitor"-threads which are all Thread.slee()ing ... As of 6.6 I am keeping the SolrClients (one per core) in a HashMap. Is this ok or should I create a new SolrClient for each request I am doing? SolrClient creation is as follows

AW: 6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads

2018-10-21 Thread Clemens Wyss DEV
Von: Shawn Heisey Gesendet: Sonntag, 21. Oktober 2018 19:13 An: solr-user@lucene.apache.org Betreff: Re: 6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads On 10/21/2018 10:13 AM, Clemens Wyss DEV wrote: > Just upgrading from 6.6 to 7.5 and am now seeing many "Conne

AW: AW: 6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads

2018-10-21 Thread Clemens Wyss DEV
On 10/21/2018 01:06 PM, Shawn Heisey wrote: > You do it with the request, not with the client For the UpdateRequests it is the "commitWithinMs"-parameter? To me this parameter sounds like telling the solr-server I need to see this data within "x ms". As we have autoCommit and autoSoftCommit ...

AW: AW: AW: 6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads

2018-10-22 Thread Clemens Wyss DEV
On 10/22/2018 6:15 AM, Shawn Heisey wrote: > autoSoftCommit is pretty aggressive . If your commits are taking 1-2 seconds > or les well, some take minutes (re-index)! > autoCommit is quite long. I'd probably go with 60 seconds Which means every 1min the "pending"/"soft" commits are effectively s

Solr suggestions, best practices

2018-11-06 Thread Clemens Wyss DEV
At the moment we are using spellchecking-component for suggestions which is suboptimal, to say the least. What are best pracitces for suggestions using Solr? googling (with excellent suggestions 😉) I came along https://blog.trifork.com/2012/02/15/different-ways-to-make-auto-suggestions-with-sol

AW: AW: AW: 6.6 -> 7.5 SolrJ, seeing many "Connection evictor"-Threads

2018-11-06 Thread Clemens Wyss DEV
Hi Shalin, > You can expect as many connection evictor threads I have (whysoever (*)) 27 SolrClient instances instantiated but I see ~95 "Connection Evictor" threads ... >It turns out that I made a mistake in the patch I committed in...which names >threads like pool-123-thread-1282. >So if you

AW: Solr suggestions, best practices

2018-11-08 Thread Clemens Wyss DEV
com/2015/03/04/solr-suggester/ Which version of Solr are you using? Regards, Edwin On Tue, 6 Nov 2018 at 17:00, Clemens Wyss DEV wrote: > At the moment we are using spellchecking-component for suggestions > which is suboptimal, to say the least. What are best pracitces for > suggestion

Guideline on when a field absolutely needs to be stored?

2018-01-17 Thread Clemens Wyss DEV
Kind of "basic question" ... Am I right, that the only real reason to store a field (stored="true") is when I want to fetch the "originating value" from documents returned? What about geo-location-fields? Any other reason/(search-)function requiring a field being stored? Thx Clemens

AW: Guideline on when a field absolutely needs to be stored?

2018-01-17 Thread Clemens Wyss DEV
. https://lucene.apache.org/solr/guide/7_2/field-properties-by-use-case.html wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Jan 17, 2018, at 11:23 PM, Clemens Wyss DEV wrote: > > Kind of "basic question" ... Am I right, that the only r

SolrClient#updateByQuery?

2018-01-26 Thread Clemens Wyss DEV
SolrClient has the method(s) deleteByQuery (which I make use of when I need to reindex). #updateByQuery does nicht exist. What if I want to "update all documents matching a query"? Thx Clemens

AW: SolrClient#updateByQuery?

2018-01-26 Thread Clemens Wyss DEV
dates. HTH, Emir -- Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch Consulting Support Training - http://sematext.com/ > On 26 Jan 2018, at 17:10, Clemens Wyss DEV wrote: > > SolrClient has the method(s) deleteByQuery (which I make use of when I need > to

AW: AW: SolrClient#updateByQuery?

2018-01-26 Thread Clemens Wyss DEV
his make sense or should JIRA it? How expensive ist this "optimization"? -Ursprüngliche Nachricht- Von: Shawn Heisey [mailto:apa...@elyograg.org] Gesendet: Samstag, 27. Januar 2018 00:49 An: solr-user@lucene.apache.org Betreff: Re: AW: SolrClient#updateByQuery? On 1/26/2018

AW: AW: SolrClient#updateByQuery?

2018-01-27 Thread Clemens Wyss DEV
make sense or should JIRA it? How expensive is this "optimization"? BTW: we are on Solr 6.6.0 -Ursprüngliche Nachricht- Von: Clemens Wyss DEV [mailto:clemens...@mysign.ch] Gesendet: Samstag, 27. Januar 2018 08:50 An: 'solr-user@lucene.apache.org' Betreff: AW: AW: So

AW: AW: AW: SolrClient#updateByQuery?

2018-01-27 Thread Clemens Wyss DEV
org Betreff: Re: AW: AW: SolrClient#updateByQuery? On 1/27/2018 12:49 AM, Clemens Wyss DEV wrote: > Thanks for all these (main contributor's 😉) valuable inputs! > > First thing I did was getting getting rid of "expungeDeletes". My > "single-deletion"

AW: AW: AW: SolrClient#updateByQuery?

2018-01-28 Thread Clemens Wyss DEV
l give us a clue what's going on. 3> Show us the code if you can. Best, Erick On Sat, Jan 27, 2018 at 6:55 AM, Clemens Wyss DEV wrote: > Erick said/wrote: >> If you commit after docs are deleted and _still_ see them in search >> results, that's a JIRA > should I

AW: AW: AW: SolrClient#updateByQuery?

2018-01-28 Thread Clemens Wyss DEV
uppose you could structure your test this way: index 100 docs, 3 of them have a specific term. Set your threshold to 2% Check that the term is suggested index 100 more docs Check that the term is _not_ suggested. Best, Erick On Sun, Jan 28, 2018 at 7:24 AM, Clemens Wyss DEV wrote: > I must

AW: Build suggester in different directory (not /tmp).

2018-01-30 Thread Clemens Wyss DEV
> I almost guarantee that buildOnCommit will be unsatisfactory if not "on commit" when should suggestions/spellcheckings be updated? And how? Spellchecking/suggestions@solr: what are the best (up-to-date) sources/links for spellchecking and suggestions? -Ursprüngliche Nachricht- Von: E

indexing two words, searching single word

2018-08-03 Thread Clemens Wyss DEV
Sounds like a rather simple issue: if I index "sound stage" and search for "soundstage" I get no hits What am I doing wrong a) when indexing b) when searching ? Thx in advance - Clemens

AW: indexing two words, searching single word

2018-08-03 Thread Clemens Wyss DEV
core/7_4_0/analyzers-common/org/apache/lucene/analysis/compound/HyphenationCompoundWordTokenFilterFactory.html -Original message- > From:Clemens Wyss DEV > Sent: Friday 3rd August 2018 12:22 > To: solr-user@lucene.apache.org > Subject: indexing two words, searching single word

AW: indexing two words, searching single word

2018-08-03 Thread Clemens Wyss DEV
hat is your generic problem then. Because you probably are not looking for "andthe" kind of tokens. However a shingle plus regex to remove whitespace can give you "anytwo wordstogether smooshed" tokens in the index. Regards, Alex On Fri, Aug 3, 2018, 7:19 AM Clemens

AW: indexing two words, searching single word

2018-08-03 Thread Clemens Wyss DEV
seems to "work" -Ursprüngliche Nachricht- Von: Clemens Wyss DEV Gesendet: Freitag, 3. August 2018 13:46 An: solr-user@lucene.apache.org Betreff: AW: indexing two words, searching single word >Because you probably are not looking for "andthe" kind o

<    1   2   3   4   >