Re: Sorting documents in one core based on a field in another core

2016-06-01 Thread Mark Robinson
Thanks Mikhail! I will check and get back. Best, Mark On Tue, May 31, 2016 at 4:58 PM, Mikhail Khludnev < mkhlud...@griddynamics.com> wrote: > Hello Mark, > > Is it sounds like what's described at > > http://blog-archive.griddynamics.com/2015/08/scoring-join-party-in-s

Re: Add a new field dynamically to each of the result docs and sort on it

2016-06-01 Thread Mark Robinson
Thanks Charlie! I will check this and try it out. Best, Mark. On Wed, Jun 1, 2016 at 7:00 AM, Charlie Hull wrote: > On 01/06/2016 11:56, Mark Robinson wrote: > >> Just to complete my prev use case, in case no direct way is possible in >> SOLR to sort on a field in a differen

Solr 4.10.3 goes into recovery for unknown reason

2016-06-03 Thread Mark Christiaens
We have a SolrCloud setup (within a Cloudera deployment) using Solr 4.10.3. The Solr cluster consists of 2 nodes. Both their backing store is on HDFS (not on the local file system). Once every 1-2 weeks, the system goes into recovery without apparent reason. Digging through the logs it looks so

Accessing response docs in process method

2016-06-17 Thread Mark Robinson
started on this (accessing results in the *process* method). Thanks! Mark.

Load a java class on start up

2016-06-30 Thread Mark Robinson
R? Thanks! Mark

Re: Load a java class on start up

2016-07-02 Thread Mark Robinson
Thanks much Andrea esp. for the suggestion of SolrCoreAware! Best, Mark. On Thu, Jun 30, 2016 at 10:23 AM, Andrea Gazzarini wrote: > Hi, > the lifecycle of your Solr extension (i.e. the component) is not something > that's up to you. > Before designing the component yo

Re: Load a java class on start up

2016-07-02 Thread Mark Robinson
Yes. Integrating my CustomComponent along with SolrCoreAware (I was unaware of this prev) should give me what I am looking for. Thanks! Mark. On Sat, Jul 2, 2016 at 5:57 AM, Andrea Gazzarini wrote: > You're welcome ;) is that close to what you were looking for? > On 2 Jul 2016 1

Reading a prameter set in browser in request handler

2016-10-02 Thread Mark Robinson
ther_${country} ...but it is not working. Even tried:- weather_$country I am trying to set my weather field based on the *country *passed. Any suggestionsis is highly appreciated. Thanks! Mark

Re: Reading a prameter set in browser in request handler

2016-10-02 Thread Mark Robinson
requesthandler:- country weather_${country} ...but it is not working. Even tried:- weather_$country I am trying to set my weather field based on the *country *passed. Any suggestionsis is highly appreciated. Thanks! On Sun, Oct 2, 2016 at 11:29 AM, Mark Robinson

Re: Reading a prameter set in browser in request handler

2016-10-02 Thread Mark Robinson
reducing my query url length. So baseically was trying to find out *how I can access a parameter passed from the browser in a request handler to determine on a field dynamically using the info passed from browser.* Thanks! Mark On Sun, Oct 2, 2016 at 11:46 AM, Alexandre Rafalovitch wrote: > T

Re: Reading a prameter set in browser in request handler

2016-10-02 Thread Mark Robinson
sources for Solr beginners and intermediates: > http://www.solr-start.com/ > > > On 2 October 2016 at 23:19, Mark Robinson wrote: > > Thanks Alex for the reply. > > > > Yes. in this context I want to determine the weather of the country > passed > > from br

Re: ClassNotFoundException with Custom ZkACLProvider

2016-11-15 Thread Mark Miller
Could you file a JIRA issue so that this report does not get lost? - Mark On Tue, Nov 15, 2016 at 10:49 AM Solr User wrote: > For those interested, I ended up bundling the customized ACL provider with > the solr.war. I could not stomach looking at the stack trace in the logs. > >

Re: autoAddReplicas:true not working

2016-11-15 Thread Mark Miller
Look at the Overseer host and see if there are any relevant logs for autoAddReplicas. - Mark On Mon, Oct 24, 2016 at 3:01 PM Chetas Joshi wrote: > Hello, > > I have the following configuration for the Solr cloud and a Solr collection > This is Solr on HDFS and Solr version I am us

Re: solr shutdown

2016-11-15 Thread Mark Miller
lower the wait. But most of the time you will pay for that for a non clean shutdown except in exceptional situations. - Mark On Fri, Oct 21, 2016 at 12:10 PM Joe Obernberger < joseph.obernber...@gmail.com> wrote: > Thanks Shawn - We've had to increase this to 300 seconds when using a

Re: Solr node not found in ZK live_nodes

2016-12-07 Thread Mark Miller
the ZK connection is a basic feature from day one. Mark On Wed, Dec 7, 2016 at 12:34 AM Manohar Sripada wrote: > Thanks Erick! Should I create a JIRA issue for the same? > > Regarding the logs, I have changed the log level to WARN. That may be the > reason, I couldn't get

Partial Match with DF

2017-03-16 Thread Mark Johnson
Forgive me if I'm missing something obvious -- I'm new to Solr, but I can't seem to find an explanation for the behavior I'm seeing. If I have a document that looks like this: { field1: "aaa bbb", field2: "ccc ddd", field3: "eee fff" } And I do a search where "q" is "aaa ccc", I get t

Re: Partial Match with DF

2017-03-16 Thread Mark Johnson
efinition because of copyField. Your > original fields may be strings. > > Remember to reload core and reminded when you change definitions. > > Regards, >Alex > > > On 16 Mar 2017 9:15 AM, "Mark Johnson" > wrote: > > > Forgive me if I'm missing

Re: Partial Match with DF

2017-03-16 Thread Mark Johnson
(or collection) from the drop-down>>analysis > That shows you exactly how Solr/Lucene break up text at query and index > time > > add &debug=query to the URL. That'll show you how the query was parsed. > > Best, > Erick > > On Thu, Mar 16, 2017 at 6:52 AM,

Re: Partial Match with DF

2017-03-16 Thread Mark Johnson
Wow, that's really powerful! Thank you! On Thu, Mar 16, 2017 at 11:19 AM, Charlie Hull wrote: > Hi Mark, > > Open Source Connection's excellent www.splainer.io might also be useful to > help you break down exactly what your query is doing. > > Cheers > > Cha

Re: Partial Match with DF

2017-03-16 Thread Mark Johnson
ion different > cases, you can go wild. Here's a partial > list:https://cwiki.apache.org/confluence/display/solr/ > Understanding+Analyzers%2C+Tokenizers%2C+and+Filters, > see the "Tokenizer", "Filters" and CharFilters" links. There are 12 > tokenizers list

Regex Phrases

2017-03-22 Thread Mark Johnson
Is it possible to configure Solr to treat text that matches a regex as a phrase? I have a database full of products, and the Title and Description fields are text_en, tokenized via the StandardTokenizerFactory. This works in most cases, but a number of products have names like: - Vitamin A - Vi

Re: Regex Phrases

2017-03-22 Thread Mark Johnson
gt; Best, > Erick > > On Wed, Mar 22, 2017 at 11:06 AM, Mark Johnson > wrote: > > Is it possible to configure Solr to treat text that matches a regex as a > > phrase? > > > > I have a database full of products, and the Title and Description fields > > are tex

Re: Regex Phrases

2017-03-23 Thread Mark Johnson
> On Wed, Mar 22, 2017 at 12:56 PM, Susheel Kumar > > wrote: > > > I have used PatternReplaceFilterFactory in some of these situations. > e.g. > > > below > > > > > > > > > class="solr.PatternReplaceFilterFactory" pattern

Re: hung threads and CLOSE_WAIT sockets

2014-03-07 Thread Mark Miller
On Mar 7, 2014, at 3:11 AM, Avishai Ish-Shalom wrote: > SOLR-5216 Yes, that is the one. - Mark http://about.me/markrmiller

Re: More Maintenance Releases?

2014-03-12 Thread Mark Miller
+1 to the idea, I love bug fix releases (which is why I volunteered to do the last couple). The main limiting factor is a volunteer to do it. Users requesting a specific bug fix relese is probably a good way to prompt volunteers though. --  Mark Miller about.me/markrmiller On March 12, 2014

Re: Change replication factor

2014-03-12 Thread Mark Miller
open, though it looks like stuff has been committed:  https://issues.apache.org/jira/browse/SOLR-5130 --  Mark Miller about.me/markrmiller On March 12, 2014 at 10:40:15 AM, Mike Hugo (m...@piragua.com) wrote: After a collection has been created in SolrCloud, is there a way to modify the

Re: Bootstrapping SolrCloud cluster with multiple collections in differene sharding/replication setup

2014-03-20 Thread Mark Miller
before we had a collections api. The collections API is much better if you want multiple collections and it’s the future. --  Mark Miller about.me/markrmiller On March 20, 2014 at 10:24:18 AM, Ugo Matrangolo (ugo.matrang...@gmail.com) wrote: Hi, I would like some advice about the best way to

Re: solr cloud distributed optimize() becomes serialized

2014-03-21 Thread Mark Miller
Recently fixed in Lucene - should be able to find the issue if you dig a little. --  Mark Miller about.me/markrmiller On March 21, 2014 at 10:25:56 AM, Greg Walters (greg.walt...@answers.com) wrote: I've seen this on 4.6. Thanks, Greg On Mar 20, 2014, at 11:58 PM, Shalin Shekhar M

RE: Limit on # of collections -SolrCloud

2014-03-21 Thread Mark Miller
On March 21, 2014 at 1:46:13 PM, Tim Potter (tim.pot...@lucidworks.com) wrote: We've seen instances where you end up restarting the overseer node each time as you restart the cluster, which causes all kinds of craziness.  That would be a great test to add tot he suite. --  Mark M

Re: MergingSolrIndexes not supported by SolrCloud?why?

2014-03-26 Thread Mark Miller
FWIW, you can use merge like this if you run on HDFS rather than local filesystem. --  Mark  On March 26, 2014 at 12:34:39 PM, Shawn Heisey (s...@elyograg.org) wrote: On 3/26/2014 3:14 AM, rulinma wrote: > MergingSolrIndexes: > > http://192.168.22.32:8080/solr/admin/cor

Re: [ANN] Solr in Action book release (Solr 4.7)

2014-03-27 Thread Mark Miller
Nice, Congrats! --  Mark Miller about.me/markrmiller On March 27, 2014 at 11:17:49 AM, Trey Grainger (solrt...@gmail.com) wrote: I'm excited to announce the final print release of *Solr in Action*, the newest Solr book by Manning publications covering through Solr 4.7 (the current ve

Re: SolrCloud 4.6.1 hanging

2014-03-28 Thread Mark Miller
I'm looking into a hang as well - not sure of it involves searching as well, but it may. Can you file a JIRA issue - let's track it down. - Mark > On Mar 28, 2014, at 8:07 PM, Rafał Kuć wrote: > > Hello! > > I have an issue with one of the SolrCloud deployments an

Re: zookeeper reconnect failure

2014-03-30 Thread Mark Miller
We don’t currently retry, but I don’t think it would hurt much if we did - at least briefly. If you want to file a JIRA issue, that would be the best way to get it in a future release. --  Mark Miller about.me/markrmiller On March 28, 2014 at 5:40:47 PM, Michael Della Bitta (michael.della.bi

Range query and join, oarse exception when parens are added

2014-04-08 Thread Mark Olsen
pache.solr.parser.QueryParser.Query(QueryParser.java:108) at org.apache.solr.parser.QueryParser.TopLevelQuery(QueryParser.java:97) at org.apache.solr.parser.SolrQueryParserBase.parse(SolrQueryParserBase.java:160) ... 45 more Is this a known bug in this version of Solr (4.2.1)? Thank you, Mark

Re: Range query and join, oarse exception when parens are added

2014-04-10 Thread Mark Olsen
On 4/8/2014 22:00 GMT Shawn Heisey wrote: >On 4/8/2014 1:48 PM, Mark Olsen wrote: >> Solr version 4.2.1 >> >> I'm having an issue using a "join" query with a range query, but only when >> the query is wrapped in parens. >> >> This quer

Re: Range query and join, oarse exception when parens are added

2014-04-10 Thread Mark Olsen
ery object will be a fun exercise. `Mark - Original Message - From: "Chris Hostetter" To: solr-user@lucene.apache.org Sent: Thursday, April 10, 2014 4:33:19 PM Subject: Re: Range query and join, oarse exception when parens are added Mark: first off, the details matter. Nothin

Re: Race condition in Leader Election

2014-04-15 Thread Mark Miller
We have to fix that then. --  Mark Miller about.me/markrmiller On April 15, 2014 at 12:20:03 PM, Rich Mayfield (mayfield.r...@gmail.com) wrote: I see something similar where, given ~1000 shards, both nodes spend a LOT of time sorting through the leader election process. Roughly 30 minutes

Re: Distributed commits in CloudSolrServer

2014-04-15 Thread Mark Miller
Inline responses below. --  Mark Miller about.me/markrmiller On April 15, 2014 at 2:12:31 PM, Peter Keegan (peterlkee...@gmail.com) wrote: I have a SolrCloud index, 1 shard, with a leader and one replica, and 3  ZKs. The Solr indexes are behind a load balancer. There is one  CloudSolrServer

Re: clusterstate.json does not reflect current state of down versus active

2014-04-16 Thread Mark Miller
bq.  before any of Solr gets to do its shutdown sequence Yeah, this is kind of an open issue. There might be a JIRA for it, but I cannot remember. What we really need is an explicit shutdown call that can be made before stopping jetty so that it’s done gracefully. --  Mark Miller about.me

Re: waitForLeaderToSeeDownState when leader is down

2014-04-16 Thread Mark Miller
What version are you testing? Thought we had addressed this. --  Mark Miller about.me/markrmiller On April 16, 2014 at 6:02:09 PM, Jessica Mallet (mewmewb...@gmail.com) wrote: Hi Furkan, Thanks for the reply. I understand the intent. However, in the case I described, the follower is blocked

Re: Confusion when using go-live and MapReduceIndexerTool

2014-04-17 Thread Mark Miller
Odd - might be helpful if you can share your sorlconfig.xml being used. --  Mark Miller about.me/markrmiller On April 17, 2014 at 12:18:37 PM, Brett Hoerner (br...@bretthoerner.com) wrote: I'm doing HDFS input and output in my job, with the following: hadoop jar /mnt/faas-solr.jar \

Re: Confusion when using go-live and MapReduceIndexerTool

2014-04-23 Thread Mark Miller
l the merge is complete. If writes are allowed, corruption may occur on the merged index.” Doesn’t sound right to me at all. --  Mark Miller about.me/markrmiller On April 22, 2014 at 10:38:08 AM, Brett Hoerner (br...@bretthoerner.com) wrote: I think I'm just misunderstanding the use of go-

Re: DIH issues with 4.7.1

2014-04-26 Thread Mark Miller
System.currentTimeMillis can jump around due to NTP, etc. If you are trying to count elapsed time, you don’t want to use a method that can jump around with the results. --  Mark Miller about.me/markrmiller On April 26, 2014 at 8:58:20 AM, YouPeng Yang (yypvsxf19870...@gmail.com) wrote: Hi

Re: DIH issues with 4.7.1

2014-04-26 Thread Mark Miller
My answer remains the same. I guess if you want more precise terminology, nanoTime will generally be monotonic and currentTimeMillis will not be, due to things like NTP, etc. You want monotonicity for measuring elapsed times. --  Mark Miller about.me/markrmiller On April 26, 2014 at 11:25:16 AM

Re: zkCli zkhost parameter

2014-04-26 Thread Mark Miller
Have you tried a comma-separated list or are you going by documentation? It should work.  --  Mark Miller about.me/markrmiller On April 26, 2014 at 1:03:25 PM, Scott Stults (sstu...@opensourceconnections.com) wrote: It looks like this only takes a single host as its value, whereas the zkHost

Re: DIH issues with 4.7.1

2014-04-26 Thread Mark Miller
to even hope for monotonicity. --  Mark Miller about.me/markrmiller On April 26, 2014 at 1:11:14 PM, Walter Underwood (wun...@wunderwood.org) wrote: NTP works very hard to keep the clock positive monotonic. But nanoTime is intended for elapsed time measurement anyway, so it is the right choice

Re: overseer queue clogged

2014-05-01 Thread Mark Miller
What version are you running? This was fixed in a recent release. It can happen if you hit add core with the defaults on the admin page in older versions. --  Mark Miller about.me/markrmiller On May 1, 2014 at 11:19:54 AM, ryan.cooke (ryan.co...@gmail.com) wrote: I saw an overseer queue

Strict Search in Apache Solr

2014-05-05 Thread Reyes, Mark
: I’d like to query: “your future”, then less than 10 results would return and print to the page. Regards, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may contain. E-mail messages sent from Bridgepoint

Re: Strict Search in Apache Solr

2014-05-05 Thread Reyes, Mark
Okay, let¹s try it this wayŠ CURRENTLY: Step 1: Type, your future into the search bar. Step 2: 10 search results return. I¹D LIKE TO SEE THIS: Step 1: Type, ³your future² into the search bar. Step 2: 1 search result returns. Can this be accomplished through the Solr UI? Thanks, Mark On 5/5

Re: Replica active during warming

2014-05-13 Thread Mark Miller
If you are sure about this, can you file a JIRA issue? --  Mark Miller about.me/markrmiller On May 12, 2014 at 8:50:42 PM, lboutros (boutr...@gmail.com) wrote: Dear All, we just finished the migration of a cluster from Solr 4.3.1 to Solr 4.6.1. With solr 4.3.1 a node was not considered as

Error when creating collection

2014-05-13 Thread Mark Olsen
quot;production" environment) the permissions are more restricted. I made sure the group/owner of the /usr/local/solr directory are set up to be the correct user. Any insight into potential file permissions that I may be overlooking? Thank you, Mark

Re: Error when creating collection

2014-05-19 Thread Mark Olsen
org.apache.solr.cloud.RecoveryStrategy.doRecovery(RecoveryStrategy.java:346) at org.apache.solr.cloud.RecoveryStrategy.run(RecoveryStrategy.java:223) Caused by: java.net.SocketTimeoutException: Read timed out Thanks, Mark - Original Message - From: "Shawn Heisey" To: solr-user@lucene.apach

Re: Error when creating collection

2014-05-19 Thread Mark Olsen
org.apache.solr.servlet.SolrDispatchFilter.handleAdminRequest(SolrDispatchFilter.java:591) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:192) at org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:141) - Original Message - From: "Mark Olsen" To: solr-user@lucene.

Re: SolrCloud: AliasAPI-Maximum number of collections

2014-06-06 Thread Mark Miller
The main limit is the 1mb zk node limit. But even that can be raised. - Mark > On Jun 6, 2014, at 6:21 AM, Shalin Shekhar Mangar > wrote: > > No, there's no theoretical limit. > > >> On Fri, Jun 6, 2014 at 11:20 AM, ku3ia wrote: >> >> Hi all! >

Solr Scale Toolkit Access Denied Error

2014-06-06 Thread Mark Gershman
le Toolkit back toward the latter part of May. It appears that the AMI was updated from ami-96779efe to ami-1e6b9d76 with the newest version of the toolkit. Many thanks to Timothy Potter to assembling this excellent toolkit for deploying and managing SolrCloud at AWS (and hopefully other cloud providers in the future). Thanks. Mark Gershman

Re: Solr Scale Toolkit Access Denied Error

2014-06-06 Thread Mark Gershman
lieve that the permissions on the AMI may be the source of the problem and will post to the issue tracker per your suggestion. Mark Gershman On Fri, Jun 6, 2014 at 7:41 PM, Chris Hostetter wrote: > > : My guess is that the customized toolkit AMI (ami-1e6b9d76) at AWS is not > : access

Re: Solr Scale Toolkit Access Denied Error

2014-06-09 Thread Mark Gershman
Thanks, Tim. Worked like a charm. Appreciate your timely assistance. On Sat, Jun 7, 2014 at 9:13 PM, Timothy Potter wrote: > Hi Mark, > > Sorry for the trouble! I've now made the ami-1e6b9d76 AMI public; > total oversight on my part :-(. Please try again. Thanks Hoss for >

Re: SolrCloud multiple data center support

2014-06-23 Thread Mark Miller
We have been waiting for that issue to be finished before thinking too hard about how it can improve things. There have been a couple ideas (I’ve mostly wanted it for improving the internal zk mode situation), but no JIRAs yet that I know of. --  Mark Miller about.me/markrmiller On June 23

Re: Question about solrcloud recovery process

2014-07-03 Thread Mark Miller
other cases, information is being pulled from zookeeper and recovering nodes are ignored. If this is the issue I think it is, it should only be an issue when you directly query recovery node. The CloudSolrServer client works around this issue as well. --  Mark Miller about.me/markrmiller On July

Re: Slow inserts when using Solr Cloud

2014-07-08 Thread Mark Miller
would have to dig in to really know I think. I would doubt it’s a configuration issue, but you never know. --  Mark Miller about.me/markrmiller On July 8, 2014 at 9:18:28 AM, Ian Williams (NWIS - Applications Design) (ian.willi...@wales.nhs.uk) wrote: Hi I'm encountering a surprisingly

Re: Parallel optimize of index on SolrCloud.

2014-07-09 Thread Mark Miller
I think that’s pretty much a search time param, though it might end being used on the update side as well. In any case, I know it doesn’t affect commit or optimize. Also, to my knowledge, SolrCloud optimize support was never explicitly added or tested. -- Mark Miller about.me/markrmiller

Re: SolrCloud replica dies under high throughput

2014-07-21 Thread Mark Miller
Looks like you probably have to raise the http client connection pool limits to handle that kind of load currently. They are specified as top level config in solr.xml: maxUpdateConnections maxUpdateConnectionsPerHost -- Mark Miller about.me/markrmiller On July 21, 2014 at 7:14:59 PM, Darren

Re: Are there any performance impact of using a non-standard length UUID as the unique key of Solr?

2014-07-24 Thread Mark Miller
Some good info on unique id’s for Lucene / Solr can be found here:  http://blog.mikemccandless.com/2014/05/choosing-fast-unique-identifier-uuid.html --  Mark Miller about.me/markrmiller On July 24, 2014 at 9:51:28 PM, He haobo (haob...@gmail.com) wrote: Hi, In our Solr collection (Solr 4.8

Re: Disabling transaction logs

2014-08-13 Thread Mark Miller
That is good testing :) We should track down what is up with that 30%. Might open a JIRA with some logs. It can help if you restart the overseer node last. There are likely some improvements around this post 4.6. -- Mark Miller about.me/markrmiller On August 13, 2014 at 12:05:27 PM, KNitin

Re: Timeout Errors while using Collections API

2013-10-17 Thread Mark Miller
There was a reload bug in SolrCloud that was fixed in 4.4 - https://issues.apache.org/jira/browse/SOLR-4805 Mark On Oct 17, 2013, at 7:18 AM, Grzegorz Sobczyk wrote: > Sorry for previous spam (something eat my message) > > I have the same problem but with reload action > ENV:

Re: Solr 4.6.0 latest build

2013-10-22 Thread Mark Miller
I would try the 4.6 builds and report back your results. I don't know that Chris is seeing the same thing that has come up in the past. In my testing, I'm not having issues with the latest 4.6. The more people that try it out, the more we will know. - Mark On Tue, Oct 22, 2013

Re: Minor bug with CloudSolrServer and collection-alias.

2013-10-23 Thread Mark Miller
I filed https://issues.apache.org/jira/browse/SOLR-5380 and just committed a fix. - Mark On Oct 23, 2013, at 11:15 AM, Shawn Heisey wrote: > On 10/23/2013 3:59 AM, Thomas Egense wrote: >> Using cloudSolrServer.setDefaultCollection(collectionId) does not work as >> intend

[ANNOUNCE] Apache Solr 4.5.1 released.

2013-10-24 Thread Mark Miller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 October 2013, Apache Solr™ 4.5.1 available The Lucene PMC is pleased to announce the release of Apache Solr 4.5.1 Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful

Re: difference between apache tomcat vs Jetty

2013-10-25 Thread Mark Miller
may do some things that assume Jetty. Solr is taking over this layer in 5.0. - Mark On Oct 25, 2013, at 11:18 AM, Cassandra Targett wrote: > In terms of adding or fixing documentation, the "Installing Solr" page > (https://cwiki.apache.org/confluence/display/solr/Installing+So

Re: Global User defined properties - solr.xml from Solr 4.4 to Solr 4.5

2013-10-25 Thread Mark Miller
Can you file a JIRA issue? - Mark On Oct 25, 2013, at 12:52 PM, marotosg wrote: > Right, but what if you have many properties being shared across multiple > cores. > That means you have to copy same properties in each individual > core.properties. > > Is not this redundant

Re: Lucene/Solr 4.5.1 svn tag

2013-10-25 Thread Mark Miller
I’ll look into it. I ran the command to create the tag, but perhaps it did not ‘take’ :) - Mark On Oct 25, 2013, at 3:56 PM, André Widhani wrote: > Hi, > > shouldn't there be a tag for the 4.5.1 release under > http://svn.apache.org/repos/asf/lucene/dev/tags/ ? > >

Re: Lucene/Solr 4.5.1 svn tag

2013-10-25 Thread Mark Miller
I had created it in a ‘retired’ location. The tag should be in the correction spot now. Thanks! - Mark On Oct 25, 2013, at 4:04 PM, Mark Miller wrote: > I’ll look into it. I ran the command to create the tag, but perhaps it did > not ‘take’ :) > > - Mark > > On Oct 25

Re: SolrCloud: optimizing a core triggers optimizations of all cores in that collection?

2013-10-25 Thread Mark Miller
false, it should optimize your whole collection. I’ve never really looked into this though - I’m sure we need some tests. - Mark

Re: difference between apache tomcat vs Jetty

2013-10-25 Thread Mark Miller
Things have actually improved quite a bit in that area. There have been many optimizations and additional ways to create large data structures off heap added in recent releases. Someday G1 might even help a bit. - Mark On Oct 25, 2013, at 7:20 PM, Tim Vaillancourt wrote: > I (jokin

Re: Solr 4.5.1 replication Bug? "Illegal to have multiple roots (start tag in epilog?)."

2013-10-29 Thread Mark Miller
Has someone filed a JIRA issue with the current known info yet? - Mark > On Oct 29, 2013, at 12:36 AM, Sai Gadde wrote: > > Hi Michael, > > I downgraded to Solr 4.4.0 and this issue is gone. No additional settings > or tweaks are done. > > This is not a fix or solu

AJAX Solr returning the default wildcard *:* and not what I query

2013-10-30 Thread Reyes, Mark
en in detail on Stackoverflow, http://stackoverflow.com/questions/19691535/ajax-solr-returning-the-default-wildcard-and-not-what-i-query Thank you, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may conta

Re: AJAX Solr returning the default wildcard *:* and not what I query

2013-10-30 Thread Reyes, Mark
solr.log file per Solr 4.5 http://pastebin.com/zSpERJZA Thanks Shawn, Mark On 10/30/13, 12:44 PM, "Shawn Heisey" wrote: >On 10/30/2013 1:26 PM, Reyes, Mark wrote: >> I am currently integrating JavaScript framework AJAX Solr to my domain. >>I am trying to query wor

Re: AJAX Solr returning the default wildcard *:* and not what I query

2013-10-31 Thread Reyes, Mark
I just tweaked the reuters.js example to listen to the window.location object and it resolved the wildcard returns. I put it on pastebin, http://pastebin.com/GyC4RMva Thanks for the reply everyone, Mark --- P

Exclude urls without 'www' from Nutch 1.7 crawl

2013-11-01 Thread Reyes, Mark
e code on paste bin, http://pastebin.com/Cp6vUxPR Also on stack overflow, http://stackoverflow.com/questions/19731904/exclude-urls-without-www-from-nutch-1-7-crawl Thank you, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential info

Re: Exclude urls without 'www' from Nutch 1.7 crawl

2013-11-01 Thread Reyes, Mark
Noted and will do (that goes twice for the suggestions and putting this on the nutch list instead). Thanks all, Mark On 11/1/13, 10:53 AM, "Furkan KAMACI" wrote: >As Markus pointed Nutch has a feature for such kind of situation. Here is >Solr list but one mo

Re: SolrCloud never fully recovers after slow disks

2013-11-10 Thread Mark Miller
Which version of solr are you using? Regardless of your env, this is a fail safe that you should not hit. - Mark > On Nov 5, 2013, at 8:33 AM, Henrik Ossipoff Hansen > wrote: > > I previously made a post on this, but have since narrowed down the issue and > am now giving t

Re: SolrCloud keeps repeating exception 'SolrCoreState already closed'

2013-11-10 Thread Mark Miller
Can you isolate any exceptions that happened just before that exception. started repeating? - Mark > On Nov 7, 2013, at 9:09 AM, Eric Bus wrote: > > Hi, > > I'm having a problem with one of my shards. Since yesterday, SOLR keeps > repeating the same exception over

Setting up Multiple Cores on Solr 4.5.0

2013-11-10 Thread Reyes, Mark
Any good/recent documentation that I can reference on setting up multiple cores in Solr 4.5.0? Thanks all, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may contain. E-mail messages sent from

Re: SolrCloud never fully recovers after slow disks

2013-11-11 Thread Mark Miller
The socket read timeouts are actually fairly short for recovery - we should probably bump them up. Can you file a JIRA issue? It may be a symptom rather than a cause, but given a slow env, bumping them up makes sense. - Mark > On Nov 11, 2013, at 8:27 AM, Henrik Ossipoff Hansen >

Nutch 1.7 + AJAX Solr returning ALL contents vs. SPECIFIC

2013-11-11 Thread Reyes, Mark
the search results page versus all contents of that page? --- Thanks again, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may contain. E-mail messages sent from Bridgepoint Education may contain

Re: Why do people want to deploy to Tomcat?

2013-11-13 Thread Mark Miller
eate a collection without needing to deal with config - you want to deal with the config when you need to, not face it all up front every time it is time to create a new collection. IMO, the name example is historical - most people already use it this way, the name just confuses matters. - Mark

Re: collections API error

2013-11-13 Thread Mark Miller
Try Solr 4.5.1. https://issues.apache.org/jira/browse/SOLR-5306 Extra collection creation parameters like collection.configName are not being respected. - Mark On Nov 13, 2013, at 2:24 PM, Christopher Gross wrote: > Running Apache Solr 4.5 on Tomcat 7.0.29, Java 1.6_30. 3 SolrCloud no

Re: SolrCloud question

2013-11-15 Thread Mark Miller
We are moving away from pre defining SolrCores for SolrCloud. The correct approach would be to use thew Collections API - then it is quite simple to change the number of shards for each collection you create. Hopefully our examples will move to doing this before long. - Mark On Nov 15, 2013

Re: distributed search is significantly slower than direct search

2013-11-17 Thread Mark Miller
eventually), I think we could avoid it and just use internal ids. - Mark On Nov 17, 2013, at 12:44 PM, Yuval Dotan wrote: > Hi Tomás > This is just a test environment meant only to reproduce the issue I am > currently investigating. > The number of documents should grow substantially

Nutch 1.7 solrdedup error

2013-11-17 Thread Reyes, Mark
well, http://stackoverflow.com/questions/20013630/nutch-1-7-solrdedup-error Thanks, Mark IMPORTANT NOTICE: This e-mail message is intended to be received only by persons entitled to receive the confidential information it may contain. E-mail messages sent from Bridgepoint Education may contain i

Re: [ANNOUNCE] Apache Solr Reference Guide 4.5 Available

2013-11-18 Thread Mark Miller
There appear to be plugins to do this, but since Apache hosts the wiki infra for us, we don’t get to toss in any plugins we want unfortunately. - Mark On Nov 18, 2013, at 8:16 AM, Uwe Reh wrote: > I'd like to read the guide as e-paper. Is there a way to obtain the document > in

Re: Listing Collections in Solr Cloud

2013-11-18 Thread Mark Miller
We should have a list command in the collections api. I can help if someone wants to make a JIRA issue. - Mark On Nov 18, 2013, at 2:11 PM, Anirudha Jadhav wrote: > you can use the following 2 ways > > 1. ZK client API >you could just do a get_children on the zk node > /

Re: SolrCloud question

2013-11-18 Thread Mark Miller
You shouldn’t be configuring the replication handler if you are using solrcloud. - Mark On Nov 18, 2013, at 3:51 PM, Beale, Jim (US-KOP) wrote: > Thanks Michael, > > I am having a terrible time getting this non-sharded index up. Everything I > try leads to a dead-end. > >

Re: Problems bulk adding documents to Solr Cloud in 4.5.1

2013-11-19 Thread Mark Miller
soon. - Mark On Nov 19, 2013, at 10:11 AM, Michael Tracey wrote: > Dave, that's the exact symptoms we all have had in SOLR-5402. After many > attempted fixes (including upgrading jetty, switching to tomcat, messing with > buffer settings) my solution was to fall back to 4.4 a

Re: Option to enforce a majority quorum approach to accepting updates in SolrCloud?

2013-11-19 Thread Mark Miller
are not enough replicas up to satisfy the param to begin with. I don’t think there is a JIRA issue yet, fire away if you want. - Mark On Nov 19, 2013, at 12:14 PM, Timothy Potter wrote: > I've been thinking about how SolrCloud deals with write-availability using > in-sync replica set

Re: Question regarding possibility of data loss

2013-11-19 Thread Mark Miller
I’d recommend you start with the upcoming 4.6 release. Should be out this week or next. - Mark On Nov 19, 2013, at 8:18 AM, adfel70 wrote: > Hi, we plan to establish an ensemble of solr with zookeeper. > We gonna have 6 solr servers with 2 instances on each server, also we'll >

Re: Option to enforce a majority quorum approach to accepting updates in SolrCloud?

2013-11-19 Thread Mark Miller
Mostly a lot of other systems already offer these types of things, so they were hard not to think about while building :) Just hard to get back to a lot of those things, even though a lot of them are fairly low hanging fruit. Hardening takes the priority :( - Mark On Nov 19, 2013, at 12:42 PM

Re: Zookeeper down question

2013-11-19 Thread Mark Miller
something that has gone down and another replica in the shard can be tried. We use the load balancing solrj client for these internal requests. CloudSolrServer handles failover for the user (or non internal) requests. Or you can use your own external load balancer. - Mark >

Re: Multiple data/index.YYYYMMDD.... dirs == bug?

2013-11-20 Thread Mark Miller
something - but it should not be something that lasts a long time. - Mark On Nov 20, 2013, at 11:50 AM, Daniel Collins wrote: > In our experience (with SolrCloud), if you trigger a full replication (e.g. > new replica), you get the "timestamp" directory, it never renames back to > j

Re: Extensibility of HttpSolrServer

2013-11-20 Thread Mark Miller
Feel free to file a JIRA issue with the changes you think make sense. - Mark On Nov 20, 2013, at 4:21 PM, Eugen Paraschiv wrote: > Hi, > Quick question about the HttpSolrServer implementation - I would like to > extend some of the functionality of this class - but when I extend

<    1   2   3   4   5   6   7   8   9   10   >