Issues in Solr-7.3

2018-06-06 Thread tapan1707
We are planning to upgrade our Solr-6.4 to Solr-7.x. While considering the appropriate minor version, I saw that there are many ongoing issues for Solr-7.3 users on the mailing list. Just wanted to take an expert opinion if it's *safe* to just upgrade to 7.3 without worrying about creating (or add

Re: Graph traversal: Bypass cycle detection?

2018-06-06 Thread Joel Bernstein
Hi, At this time cycle detection is built into the nodes expression and cannot be turned off. The nodes expression is really designed to do a traditional breadth first search through a graph where cycle detection is needed so you don't continually walk the same nodes. Are you looking to do random

solr search connectivity error with shards

2018-06-06 Thread Dinesh Sundaram
Hi, I have a domain called test.com to process solr search queries with 2 solr instances like below. second URL[2] works fine but I dont want to show up the localhost, portnumber to the end user so I tried to configure like first URL[1] but it is not working. I have the proxy pass in test.com apac

Re: Error deleting copy field

2018-06-06 Thread Steve Rowe
Ikenna, Can you please create a JIRA issue[1], and if possible include your schema? Thanks. -- Steve www.lucidworks.com [1] https://wiki.apache.org/solr/HowToContribute#JIRA_tips_.28our_issue.2Fbug_tracker.29 > On Jun 6, 2018, at 5:16 PM, Ikenna Okonkwo wrote: > > Hi Steve, > > I didn't us

Re: Error deleting copy field

2018-06-06 Thread Ikenna Okonkwo
Hi Steve, I didn't use a dynamic field. It was an exact match. -- Ikenna Okonkwo Senior Front End Developer, WMX Project Phone: (905) 821-2111 (Ext: 78847) Mobile: (437) 922-9004 ikenna.okon...@walmart.com Walmart Canada Corp. 1940 Argentia Road Mississauga, Ontario L5N 1P9 Save money. Live bet

Re: Delete then re-add a core

2018-06-06 Thread BlackIce
One of the issues with the install script is that when its run by any user other than "solr" and installed into default directories, is that one might get ownership/permission problems. The easiest way to avoid these is by creating the "solr" user BEFORE installing Solr as a regular "Login-User",

Re: Error deleting copy field

2018-06-06 Thread Steve Rowe
Hi Ikenna, If the source field(s) are dynamic fields, then you have to give the same spelling you used when you created the copy field. E.g. for ‘item_desc_en’, if the source field in the copy field directive is ‘*_desc_en’, then you have to use that when you issue the delete. You can find ou

Error deleting copy field

2018-06-06 Thread Ikenna Okonkwo
Hi all, I encountered an error when using SOLR cloud 7.2.1. I used the UI to add a bunch of “copy fields” to a field named “_text_”, and now, I can’t delete the copy fields nor the field. I get the error message when I attempt to delete a copy field: Copy field directive not found: 'item_desc_

Re: Delete then re-add a core

2018-06-06 Thread Amanda Shuman
Thanks, I was able to do most of the but didn't reinstall... Still running into an issue I think is related to current working directory. I guess reinstalling might fix that? Amanda On Wed, Jun 6, 2018, 17:27 Erick Erickson wrote: > Assuming this is stand-alone: > > find the data dir for the cor

FINAL REMINDER: Apache EU Roadshow 2018 in Berlin next week!

2018-06-06 Thread sharan
Hello Apache Supporters and Enthusiasts This is a final reminder that our Apache EU Roadshow will be held in Berlin next week on 13th and 14th June 2018. We will have 28 different sessions running over 2 days that cover some great topics. So if you are interested in Microservices, Internet of

Re: BlendedInfixSuggester wiki errata corrige

2018-06-06 Thread Alessandro Benedetti
Hi Cassandra, thanks for your reply. I did the fix in the official documentation as part of the bugfix I am working on: LUCENE-8343 Any feedback is welcome ! Cheers - --- Alessandro Benedetti Search Consultant, R&D Softw

Re: Solr Default query parser

2018-06-06 Thread Shawn Heisey
On 6/6/2018 9:52 AM, Kamal Kishore Aggarwal wrote: >> What is the default query parser (QP) for solr. >> >> While I was reading about this, I came across two links which looks >> ambiguous to me. It's not clear to me whether Standard is the default QP or >> Lucene is the default QP or they are same

Re: Solr Default query parser

2018-06-06 Thread Kamal Kishore Aggarwal
[Correcting the subject] On Wed, Jun 6, 2018 at 2:37 PM, Kamal Kishore Aggarwal < kkroyal@gmail.com> wrote: > Hi Guys, > > What is the default query parser (QP) for solr. > > While I was reading about this, I came across two links which looks > ambiguous to me. It's not clear to me whether St

Re: Solr Swap space

2018-06-06 Thread JDISTim
Thank you for this information! I am working on a client PC where Solr Admin showed 11.64 GB/13.03 GB Swap Space, and was losing my mind trying to track down the issue! -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Delete then re-add a core

2018-06-06 Thread Erick Erickson
Assuming this is stand-alone: > find the data dir for the core (parent of the index dir) > find the config dir for the core > shut down Solr > "rm -rf data" > make any changes to the configs you want > start Solr As BlackIce said, reinstalling works too. If it's SolrCloud delete and recreate the

SolrJ and autoscaling

2018-06-06 Thread Hendrik Haddorp
Hi, I'm trying to read and modify the autoscaling config. The API on https://lucene.apache.org/solr/guide/7_3/solrcloud-autoscaling-api.html does only mention the REST API. The read part does however also work via SolrJ:     cloudSolrClient.getZkStateReader().getAutoScalingConfig() Just for

Re: Delete then re-add a core

2018-06-06 Thread BlackIce
I'm not a Solr guru I take i that you installed Solr with the install script then it installs into a dir where normal users have no right to access the necessary files... One way to circumvent this is to un-install Solr and then re-install without using the default and have it install int

Re: Delete then re-add a core

2018-06-06 Thread Amanda Shuman
Oh, and I also have a related question - how can I change my CWD (current working directory)? It is set for the /opt/ folder and not /var/ and I think that's screwing things up... Thanks! Amanda -- Dr. Amanda Shuman Post-doc researcher, University of Freiburg, The Maoist Legacy Project

Re: BlendedInfixSuggester wiki errata corrige

2018-06-06 Thread Cassandra Targett
Solr's documentation is now integrated with Lucene/Solr source code, so can be edited by anyone who is willing or able to submit a patch for it. In your case, you could integrate these edits with the code changes you're making for the JIRA issues you reference and include them with the patches you'

Delete then re-add a core

2018-06-06 Thread Amanda Shuman
Hi all, I'm a bit of a newbie still but have clearly screwed something up... so I think what I need to do now is to delete a core (saving current conf files as-is) then re-add/re-create the core and re-index. (It's not a big site and it's not public yet, so I'm not concerned about taking anything d

Graph traversal: Bypass cycle detection?

2018-06-06 Thread Christian Spitzlay
Hi, is it possible to bypass the cycle detection so a traversal can revisit nodes? The documentation at https://lucene.apache.org/solr/guide/7_3/graph-traversal.html#cycle-detection does not mention any and lists reasons why the cycle detection is in place. But if I were willing to live with the

Re: Apache and Apache Solr together

2018-06-06 Thread Andrea Gazzarini
Hi, all what you need is in Solr, better: all what you need is Solr. Solr is a server which exposes its services through HTTP, so you don't need Apache at all (at least for a training course). Best, Andrea On 06/06/18 08:57, azharuddin wrote: I've got a question: I came across Apache Solr <

Apache and Apache Solr together

2018-06-06 Thread azharuddin
I've got a question: I came across Apache Solr as requirement for a module I'm installing and even after reading the documentation on Apache Solr's official homepage I'm still not sure whether Apache runs alongside regular Apache or does it require it

Re: Windows monitoring software for Solr recommendation

2018-06-06 Thread azharuddin
Visit here to get more information on Apache SOLR . -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Sole Default query parser

2018-06-06 Thread Kamal Kishore Aggarwal
Hi Guys, What is the default query parser (QP) for solr. While I was reading about this, I came across two links which looks ambiguous to me. It's not clear to me whether Standard is the default QP or Lucene is the default QP or they are same. Below is the screenshot and links which are confusing

Streaming Expression intersect() behaviour

2018-06-06 Thread Christian Spitzlay
Hi, I don’t seem to get the behaviour of the intersect() stream decorator. I only ever get one doc from the left stream when I would have expected more than one. I constructed a test case that does not depend on my concrete index: intersect( cartesianProduct(tuple(fieldA=array(c,c,a,b,d,d)), fi

Re: sharding guidelines

2018-06-06 Thread Emir Arnautović
In case you missed, following blog posts might come handy: https://lucidworks.com/2012/07/23/sizing-hardware-in-the-abstract-why-we-dont-have-a-definitive-answer/ http://www.od-bits.com/2018

Re: Block join query parser

2018-06-06 Thread Mikhail Khludnev
[child] has childFilter param. Also, mind about [subquery] On Wed, Jun 6, 2018 at 9:33 AM, Ryan Yacyshyn wrote: > Hi all, > > I'm looking for a way to query nested documents that would return the > parent documents along with its child documents nested under it, but only > the child documents th

solr daterange data not match

2018-06-06 Thread Albert Lee
Hi all, I defined a date range type in solr schema. And then I try to write date to solr in my Java code, like this, SimpleDateFormat sdf = new SimpleDateFormat(“-MM-dd HH:mm:ss”); doc.addField(“date”, sdf.parse(“1990-01-01 15:36:42”)); while the data in solr is: "date": "1900-01-01T08:00:00