Re: Solr Migration to The AWS Cloud

2019-06-06 Thread Jörn Franke
I guess you can do this by switching off the source data center, but you would need to look more in your architecture and especially applications that use solr to verify this. It may look easy but I would test it before. > Am 06.06.2019 um 17:24 schrieb Joe Lerner : > > Ooohh...interesting.

Re: Issues with the handling of NULLs in Streaming Expressions

2019-06-06 Thread Joel Bernstein
Interesting questions. I suspect we need to beef up our test cases that deal with nulls and make sure they behave in a consistent manner. One of the things that likely needs to be looked at more carefully is how string literals are handled as opposed to nulls. In some cases I believe if null is

Re: Group by and filtering on child documents.

2019-06-06 Thread Mikhail Khludnev
On Wed, Jun 5, 2019 at 12:23 PM Jai Jamba wrote: > Can you help me with the subquery way, i tried that long back but it was > giving me some exception (can't remember that). > Well... me either. > > > > -- > Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html > --

Re: strange behavior

2019-06-06 Thread Wendy2
Hi David, I see. It fixed now by adding the (). Thank you so much! q=audit_author.name:(Burley,%20S.K.)%20AND%20entity.type:polymer -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: strange behavior

2019-06-06 Thread Wendy2
Hi Shawn, I see. I added () and it works now. Thank you very much for your help! q=audit_author.name:(Burley,%20S.K.)%20AND%20entity.type:polymer=1 -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: strange behavior

2019-06-06 Thread Shawn Heisey
On 6/6/2019 12:46 PM, Wendy2 wrote: Why "AND" didn't work anymore? I use Solr 7.3.1 and edismax parser. Could someone explain to me why the following query doesn't work any more? What could be the cause? Thanks! q=audit_author.name:Burley,%20S.K.%20AND%20entity.type:polymer It worked

Re: strange behavior

2019-06-06 Thread David Hastings
audit_author.name:Burley,%20S.K. translates to audit_author.name:Burley, DEFAULT_OPERATOR DEFAULT_FIELD:S.K. On Thu, Jun 6, 2019 at 2:46 PM Wendy2 wrote: > > Hi, > > Why "AND" didn't work anymore? > > I use Solr 7.3.1 and edismax parser. > Could someone explain to me why the following query

strange behavior

2019-06-06 Thread Wendy2
Hi, Why "AND" didn't work anymore? I use Solr 7.3.1 and edismax parser. Could someone explain to me why the following query doesn't work any more? What could be the cause? Thanks! q=audit_author.name:Burley,%20S.K.%20AND%20entity.type:polymer It worked previously but now returned very

Re: Odd error with Solr 8 log / ingestion

2019-06-06 Thread Kevin Risden
Do you see a message about idle timeout? There is a jetty bug with HTTP/2 and idle timeout that causes some stream closing. The jira below says test error, but I'm pretty sure it could come up in real usage. * https://issues.apache.org/jira/browse/SOLR-13413 *

Re: Odd error with Solr 8 log / ingestion

2019-06-06 Thread Erick Erickson
Probably your packet size is too big for the Solr<->Solr default settings. Quick test would be to try sending 10 docs per packet, then 100, then 1,000 etc. There’s not much to be gained efficiency-wise once you get past 100 docs/shard, see:

Odd error with Solr 8 log / ingestion

2019-06-06 Thread Erie Data Systems
Hello everyone, I recently setup Solr 8 in SolrCloud mode, previously I was using standalone mode and was able to easily push 10,000 records in per HTTP call wit autocommit. Ingestion occurs when server A pushes (HTTPS) payload to server B (SolrCloud) on LAN network. However, once converted to

Re: enhancement of documentation

2019-06-06 Thread Erick Erickson
> besides this. why would someone create a (zookeeper) cluster while > running all server on the same machine?? People wouldn’t in production, the “-e cloud” options without a ZK ensemble is just a convenience to get started without setting up a ZK ensemble before you can even try out Solr. >

Re: Solr Migration to The AWS Cloud

2019-06-06 Thread Joe Lerner
Ooohh...interesting. Then, presumably there is some way to have what was the cross-data-center replica become the new "primary"? It's getting too easy! Joe -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Solr test framework not able to upload configuration to zk and fails with KeeperException

2019-06-06 Thread Pratik Patel
Thanks guys, I found that the issue I had was because of some binary files (NLP models) in my configuration. Once I fixed that, I was able to set up a cluster. These exceptions are still logged but they are logged as INFO and were not the real issue. Thanks Again Pratik On Tue, Jun 4, 2019 at

Re: Loading pre created index files into MiniSolrCloudCluster of test framework

2019-06-06 Thread Pratik Patel
Thanks for the reply Alexandre, only special thing about JSON/XML is that in order to export the data in that form, I need to have "docValues" enabled for all the fields which are to be retrieved. I need to retrieve all the fields and I can not enable docValues on all fields. If there was a way to

Re: SolrCloud indexing triggers merges and timeouts

2019-06-06 Thread Rahul Goswami
Thank you for your responses. Please find additional details about the setup below: We are using Solr 7.2.1 > I have a solrcloud setup on Windows server with below config: > 3 nodes, > 24 shards with replication factor 2 > Each node hosts 16 cores. 16 CPU cores, or 16 Solr cores? The info may

RE: query parsed in different ways in two identical solr instances

2019-06-06 Thread Danilo Tomasoni
ah yes, I'm sure we are using solr 7.3.1 as test (non working) and solr 7.3.0 as 1 (working) 7.3.0 98a6b3d642928b1ac9076c6c5a369472581f7633 - woody - 2018-03-28 14:37:45 vs 7.3.1 ae0705edb59eaa567fe13ed3a222fdadc7153680 - caomanhdat - 2018-05-09 09:30:57 Danilo Tomasoni Fondazione

RE: query parsed in different ways in two identical solr instances

2019-06-06 Thread Danilo Tomasoni
The two collections are not identical, many overlapping documents but with some different field names (test has also extra fields that 1 didn't have). Actually we have 42.000.000 docs in solr1, and 40.000.000 in solr-test, but I think this shouldn'd be relevant because the query is basically

Re: query parsed in different ways in two identical solr instances

2019-06-06 Thread Alexandre Rafalovitch
Those two queries look same after sorting the parameters, yet the results are clearly different. That means the difference is deeper. 1) Have you checked that both collections have the same amount of documents (e.g. mismatched final commit). Does basic "query=*:*" return the same counts in the

RE: query parsed in different ways in two identical solr instances

2019-06-06 Thread Danilo Tomasoni
Hello, and thank you for your answer. Attached you will find the two logs for the working solr1 server, and the non-working solr-test server. Danilo Tomasoni Fondazione The Microsoft Research - University of Trento Centre for Computational and Systems Biology (COSBI) Piazza Manifattura 1,

Issues with the handling of NULLs in Streaming Expressions

2019-06-06 Thread Oleksandr Chornyi
Hi guys! I'm working on a generic query builder for Streaming Expressions which allows building various requests containing row level expressions (i.e. evaluators), aggregations/metrics, sorts, etc. On this way, I bumped into many issues related to the handling of NULL values by the engine. Here

Suggest highlight is not working with context filter query

2019-06-06 Thread Ritesh Kumar
Hello Team, I am not able to get highlighted terms from the Suggest component when using a context filter query. My definition of the suggest search component looks as follows. mySuggester BlendedInfixLookupFactory position_linear DocumentDictionaryFactory

Re: Query takes a long time Solr 6.1.0

2019-06-06 Thread vishal patel
Thanks for your reply. > How much index data is on one server with 256GB of memory? What is the > max heap size on the Solr instance? Is there only one Solr instance? One server(256GB RAM) has two below Solr instance and other application also 1) shards1 (80GB heap ,790GB Storage, 449GB

Exclude update & read from authentication.

2019-06-06 Thread Mannar mannan
Hi Team, Iam setting up basic authentication and authorization in Solr 7.7.1. Need to exclude read & update (predefined permission) from authentication. In solr 7.7.1 created a user to access console & another user for dataimport purpose, with basicauth plugin. Have to access(update, read) the

Streaming expression function which can give parent document along with its child documents ?

2019-06-06 Thread Jai Jamba
Hi, I was wondering if there is any way in streaming expression which can return parent document along with its child documents just like we have child document transformer, i.e. ** [child limit=-1]* which returns child document as well of the parent document - Jai -- Sent from:

Re: Unexpected behaviour when Solr 6 Admin UI pages are cached and server is Solr 8?

2019-06-06 Thread Colvin Cowie
I've raised https://issues.apache.org/jira/browse/SOLR-13522 - feel free to update the description as you like Cheers On Wed, 5 Jun 2019 at 21:48, Shawn Heisey wrote: > On 6/5/2019 2:40 PM, Gus Heck wrote: > > Experiences that force the user to think about the browser cache are > > sub-par :).

enhancement of documentation

2019-06-06 Thread Stefan Kärst
Hi list, I think it's a good idea add the chroot zookeeper folder at the end of: https://lucene.apache.org/solr/guide/7_0/setting-up-an-external-zookeeper-ensemble.html "Once these servers are running, you can reference them from Solr just as you did before:" bin/solr start -e cloud -z