Loadbalance for SorCloud using SolrNet

2017-04-19 Thread Vrinda Ashok
Hello, I have application sending request to Shard1 each time, making this single point of failure. Please suggest what can I use for Load balancing in SolrNet. Is there something like CloudSolrClient as in SolrJ ? Or will I have to go with HA proxy or physical load balance only ? Please sugg

Re: BUILD FAILED solr 6.5.0

2017-04-19 Thread Bernd Fehling
Hi Steve, thanks a lot for solving my problem. Would it be possible to check for ivy >= 2.3 at start of build and give your hint as message to the user? Regards Bernd Am 19.04.2017 um 17:01 schrieb Steve Rowe: > Hi Bernd, > > Your Ivy may be outdated - the project requires minimum 2.3. > > Tr

Re: Questions about the read and write speed of solr

2017-04-19 Thread Shawn Heisey
On 4/19/2017 6:31 PM, hu.xiaod...@zte.com.cn wrote: > What is the speed of reading and writing about solr? > Can someone give me some data of Performance? This question is too vague to answer. What exactly are you wanting to read and write? Even if you ask a more detailed question, the answe

Re: Explicit OR in edismax query with mm=100%

2017-04-19 Thread Yasufumi Mizoguchi
Hi, It looks that edismax respects the mm parameter in your case. You should set "mm=1", if you want to obtain the results of OR search. "mm=100%" means that all terms in your query should match. Regards, Yasufumi On 2017/04/20 10:40, Nguyen Manh Tien wrote: Hi, I run a query "Solr OR Lucene

Explicit OR in edismax query with mm=100%

2017-04-19 Thread Nguyen Manh Tien
Hi, I run a query "Solr OR Lucene" with defType=edismax and mm=100%. The search result show that query works similar to "Solr AND Lucene" (all terms required) Does edismax ignore mm parameter because i already use OR explicitly here? Thanks, Tien

Questions about the read and write speed of solr

2017-04-19 Thread hu.xiaodong
Hi , all What is the speed of reading and writing about solr? Can someone give me some data of Performance? Thanks, hu xiaodong.

Re: Solr Stream Content from URL

2017-04-19 Thread Furkan KAMACI
Hi Alexandre, My content is protected via Basic Authentication. Is it possible to use Basic Authentication with Solr Content Streams? Kind Regards, Furkan KAMACI On Wed, Apr 19, 2017 at 9:13 PM, Alexandre Rafalovitch wrote: > Have you tried stream.url parameter after enabling the > enableRemot

Re: Solr Stream Content from URL

2017-04-19 Thread Alexandre Rafalovitch
Have you tried stream.url parameter after enabling the enableRemoteStreaming flag? https://cwiki.apache.org/confluence/display/solr/Content+Streams Regards, Alex. http://www.solr-start.com/ - Resources for Solr users, new and experienced On 19 April 2017 at 13:27, Furkan KAMACI wrote: >

Solr Stream Content from URL

2017-04-19 Thread Furkan KAMACI
Hi, Is it possible to stream a CSV content from URL to Solr? I've tried URLDataSource but could not figure out about what to use as document. Kind Regards, Furkan KAMACI

Re: SolrIndexSearcher accumulation

2017-04-19 Thread Elodie Sannier
Yes, I didn't copy all our code but we also do extraReq.close(); in a finally block. It was not the problem. On 04/19/2017 11:53 AM, Mikhail Khludnev wrote: If you create SolrQueryRequest make sure you close it then, since it's necessary to release a searcher. On Wed, Apr 19, 2017 at 12:35 PM,

Re: BUILD FAILED solr 6.5.0

2017-04-19 Thread Steve Rowe
Hi Bernd, Your Ivy may be outdated - the project requires minimum 2.3. Try removing all pre-2.3 ivy-*.jar files from ~/.ant/lib/, then running “ant ivy-bootstrap”. -- Steve www.lucidworks.com > On Apr 19, 2017, at 10:55 AM, Bernd Fehling > wrote: > > Tried today to have a look at solr 6.5.0

CDCR Source Errors

2017-04-19 Thread Webster Homer
I am seeing these errors in the log: java.lang.Exception: Submitter stack trace at org.apache.solr.common.util.ExecutorUtil$MDCAwareThreadPoolExecutor.execute(ExecutorUtil.java:204) at org.apache.solr.handler.CdcrReplicatorScheduler.lambda$start$1(CdcrReplicatorScheduler.java:76)

BUILD FAILED solr 6.5.0

2017-04-19 Thread Bernd Fehling
Tried today to have a look at solr 6.5.0. - download solr-6.5.0-src.tgz from apache.org and extracted to workspace - ant eclipse - imported to eclipse neon as new project - from eclipse in lucene subdir clicked on build.xml and selected "Run As" --> "Ant Build..." - selected "package" and "Run"

Re: log4j configuration reload

2017-04-19 Thread Shawn Heisey
On 4/19/2017 1:27 AM, Vincenzo D'Amore wrote: > I'm investigating around latest version of Solr (6.4.1) if it is possible > reload the log4j.properties configuration file without Solr restart. > > As far as I understood it isn't possible, or at least, it's impossible > without develop an ad hoc com

Re: Getting error while excuting full import

2017-04-19 Thread Shawn Heisey
On 4/18/2017 11:21 PM, ankur.168 wrote: > I thought DIH does parallel db request for all the entities defined in a > document. I do not know anything about that. It *could* be possible for all the sub-entities just below another entity to run in parallel, but I've got no idea whether this is the

Re: SolrIndexSearcher accumulation

2017-04-19 Thread Mikhail Khludnev
If you create SolrQueryRequest make sure you close it then, since it's necessary to release a searcher. On Wed, Apr 19, 2017 at 12:35 PM, Elodie Sannier wrote: > Hello, > > We have found how to fix the problem. > When we update the original SolrQueryResponse object, we need to create > a new Bas

Aliases feature scales?

2017-04-19 Thread Yago Riveiro
Hi, Does Anyone know if there is any theoretical limit related to the number of aliases that a Solr cluster can handle? If I create like 10K aliases would I experiment any kind of bottleneck? Regards - Best regards /Yago -- View this message in context: http://lucene.472066.n3.nabble

Re: SolrIndexSearcher accumulation

2017-04-19 Thread Elodie Sannier
Hello, We have found how to fix the problem. When we update the original SolrQueryResponse object, we need to create a new BasicResultContext object with the extra response. Simplified code : public class CustomSearchHandler extends SearchHandler { public void handleRequestBody(SolrQueryReques

Re: log4j configuration reload

2017-04-19 Thread Vincenzo D'Amore
An update, I've found this: http://logging.apache.org/log4j/1.2/faq.html#a3.6 *Is there a way to get log4j to automatically reload a configuration file > if it changes?* > > Yes. Both the DOMConfigurator and the PropertyConfigurator support > automatic reloading through the configureAndWatch m

Re: Index and query time suggester behavior in a SolrCloud environment

2017-04-19 Thread Andrea Gazzarini
Hi, any help out there? BTW I forgot the Solr version: 6.5.0 Thanks, Andrea On 18/04/17 11:45, Andrea Gazzarini wrote: Hi, I have a project, with SolrCloud, where I'm going to use the Suggester component (BlendedInfixLookupFactory with DocumentDictionaryFactory). Some info: * I will have

RE: DistributedUpdateProcessorFactory was explicitly disabled from this updateRequestProcessorChain

2017-04-19 Thread Pratik Thaker
Hi Ishan, After making suggested changes to solrconfig.xml, I did upconfig on all 3 SOLR VMs and restarted SOLR engines. But still I am facing same issue. Is it something I am missing ? Regards, Pratik Thaker -Original Message- From: Ishan Chattopadhyaya [mailto:ichattopadhy...@gmail.c

log4j configuration reload

2017-04-19 Thread Vincenzo D'Amore
Hi all, I'm investigating around latest version of Solr (6.4.1) if it is possible reload the log4j.properties configuration file without Solr restart. As far as I understood it isn't possible, or at least, it's impossible without develop an ad hoc component. Do you know if there are workarounds