Re: Under-utilization during streaming expression execution

2019-02-15 Thread Joel Bernstein
Use large batches and fetch instead of hashjoin and lots of parallel workers. Joel Bernstein http://joelsolr.blogspot.com/ On Fri, Feb 15, 2019 at 7:48 PM Joel Bernstein wrote: > You can run in parallel and that should help quite a bit. But at a really > large batch job is better done like thi

Re: Under-utilization during streaming expression execution

2019-02-15 Thread Joel Bernstein
You can run in parallel and that should help quite a bit. But at a really large batch job is better done like this: https://joelsolr.blogspot.com/2016/10/solr-63-batch-jobs-parallel-etl-and.html Joel Bernstein http://joelsolr.blogspot.com/ On Thu, Feb 14, 2019 at 6:10 PM Gus Heck wrote: > Hi

Re: Delete by id

2019-02-15 Thread Dwane Hall
Thanks Matt, I was thinking the same regarding Solr thinking it's an update, not a delete. Sorry about the second "longhand" example, yes that was a copy paste issue the format is incorrect I was playing around with a few options with the JSON format. I'll keep testing the only difference I co

Re: solr cloud version upgrade 7.6 to 7.7 collection indexes all marked as down

2019-02-15 Thread Jeff Courtade
Yes... nothing in the logs does mean that there was nothing of interest. I have actual entries. This is a test environment so this isn't an emergency. Thanks for the clarification about what I should be seeing. I was just so flabbergasted by this because it's so strange I had to tell somebody and

Errors in Solr log

2019-02-15 Thread Hemant Verma
We are using Solr 6.6.3 with Sitecore. Solr is installed on windows. Below are few errors coming repeatedly in logs. What could be the possible fix and reason for below errors. FYI, we are not interested in using configoverlay.json, this could be one reason of error and this file exist by default.

tracing ssl between master and slave

2019-02-15 Thread Baruch Volkov
Hi, I can't find a way to trace ssl traffic between master and slave I have on master: -DSOLR_SSL_KEY_STORE=/ssl/s1/rcm.nyvmcs9.JKS.keystore -DSOLR_SSL_KEY_STORE_PASSWORD=123456 -DSOLR_SSL_KEY_STORE_TYPE=JKS -DSOLR_SSL_TRUST_STORE=/ssl/s1/rcm.nyvmcs9.JKS.truststore -DSOLR_SSL_TRUST_STORE_PASSWOR

Re: Getting repeated Error - RunExecutableListener java.io.IOException

2019-02-15 Thread Hemant Verma
Thanks Jan We are using Solr 6.6.3 version. We didn't configure RunExecutableListener in solrconfig.xml, it seems configured in configoverlay.json as default. Even we don't want to configure RunExecutableListener. Is it mandatory to use configoverlay.json or can we get rid of it? If yes can you sh

Suggest Component, prefix match (sur-)name

2019-02-15 Thread David '-1' Schmid
Hello solr-users! I'm a bit stumped and after some days of trial-and-error, I've come to the conclusion that I cannot figure this out by myself. Where I'm at: Solr 7.7 in cloud mode: - 3 shards, - 1 replication factor, - 1 shards per node, - 3 nodes, - coordinated with external zookeeper - r

Re: Migrate from sol 5.3.1 to 7.5.0

2019-02-15 Thread Erick Erickson
Basically, you have to re-index whenever you change the schema, with very few exceptions. Some changes cause exceptions. Some changes just fail to return the correct results. Etc. You can _add_ completely new fields without reindexing, but they won't have any values for existing documents. You can

Re: solr cloud version upgrade 7.6 to 7.7 collection indexes all marked as down

2019-02-15 Thread Erick Erickson
Hmmm. I'm assuming that "nothing in the logs" is node/logs/solr.log, and that you're not finding errors/exceptipons. Just sanity checking here. My guess: you're picking up the default SOLR_HOME which is in your new installation directory and all your replicas are under the old install directory.

RE: Suggest Component, prefix match (sur-)name

2019-02-15 Thread Tannen, Lev (USAEO) [Contractor]
Hi David, If I understood your requirement correctly you should use "AND" rather than "or". Also I, believe, "AND" should be in capital letters, but I am not sure. Good luck. Lev Tannen -Original Message- From: David '-1' Schmid Sent: Friday, February 15, 2019 10:23 AM To: solr-user@

Suggest Component, prefix match (sur-)name

2019-02-15 Thread David '-1' Schmid
Hello solr-users! I'm a bit stumped and after some days of trial-and-error, I've come to the conclusion that I cannot figure this out by myself. Where I'm at: Solr 7.7 in cloud mode: - 3 shards, - 1 replication factor, - 1 shards per node, - 3 nodes, - coordinated with external zookeeper - r

Re: SolrCloud exclusive features

2019-02-15 Thread David Hastings
>streaming expressions are only available in SolrCloud mode and not in Solr master-slave mode? yes, and its annoying as there are features of solr cloud I do not like. as far as a comprehensive list, that I do not know but would be interested in one as well On Thu, Feb 14, 2019 at 5:07 PM Arnold

Re: Intermittent timeout on the Slave

2019-02-15 Thread damian.pawski
Updating the TIME_WAIT on the server seems to fixed the issue as per https://support.solarwinds.com/Success_Center/Server_Application_Monitor_(SAM)/Knowledgebase_Articles/Application_monitor_using_port_443_periodically_goes_down Thank you Damian -- Sent from: http://lucene.472066.n3.nabble.com

Re: Indexing in one collection affect index in another collection

2019-02-15 Thread Zheng Lin Edwin Yeo
Hi Shawn, This issue is also occurring in the new Solr 7.7.0, with only the same data size of 20 GB. Regards, Edwin On Fri, 8 Feb 2019 at 23:53, Zheng Lin Edwin Yeo wrote: > Hi Shawn, > > Thanks for your reply. > > Although the space in the OS disk cache could be the issue, but we didn't > fac

RE: Solr 7.7 UpdateRequestProcessor broken

2019-02-15 Thread Markus Jelsma
I stumbled upon this too yesterday and created SOLR-13249. In local unit tests we get String but in distributed unit tests we get a ByteArrayUtf8CharSequence instead. https://issues.apache.org/jira/browse/SOLR-13249 -Original message- > From:Andreas Hubold > Sent: Friday 15th Febr

Re: Solr 7.7 UpdateRequestProcessor broken

2019-02-15 Thread Andreas Hubold
Hi, thank you, Jan. I've created https://issues.apache.org/jira/browse/SOLR-13255. Maybe you want to add your patch to that ticket. I did not have time to test it yet. So I guess, all SolrJ usages have to handle CharSequence now for string fields? Well, this really sounds like a major breaki

Re: Solr 7.7 UpdateRequestProcessor broken

2019-02-15 Thread Jan Høydahl
Hi This is a subtle change which is not detected by our langid unit tests, as I think it only happens when document is trasferred with SolrJ and Javabin codec. Was introduced in https://issues.apache.org/jira/browse/SOLR-12992 Please create a new JIRA issue for langid so we can try to fix it in