Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4B041DFCF for ; Mon, 19 Nov 2012 14:25:00 +0000 (UTC) Received: (qmail 79504 invoked by uid 500); 19 Nov 2012 14:24:59 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 79447 invoked by uid 500); 19 Nov 2012 14:24:58 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 79431 invoked by uid 99); 19 Nov 2012 14:24:58 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2012 14:24:58 +0000 Date: Mon, 19 Nov 2012 14:24:58 +0000 (UTC) From: "Mark Miller (JIRA)" To: dev@lucene.apache.org Message-ID: <991446471.2880.1353335098694.JavaMail.jiratomcat@arcas> In-Reply-To: <579081846.119221.1352988733178.JavaMail.jiratomcat@arcas> Subject: [jira] [Commented] (SOLR-4083) Deprecate specifying individual information in solr.xml. Possibly deprecate solr.xml entirely MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/SOLR-4083?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13500259#comment-13500259 ] Mark Miller commented on SOLR-4083: ----------------------------------- Some initial thoughts: What if we handled meta data with a simple properties file at the root of each core directory (solrhome for that core). Fast to parse, if it has a good name it's easy to identify cores, etc. One of the properties could be a config set name? Only if that file exists and specifies a conf set name would you use the new logic. And if you found a solr.xml for back compat, you wouldn't even start looking for core dirs - but if solr.xml is not there start looking for xxxx.properties in each folder found in solrhome? Once you have read xxxx.properties, you either find a conf set in it, or probably kick into the rules solrcloud uses - if there is only one conf set, use that, if there is a conf set with the same name as the core, use that, etc. For way back bat compat where we didn't have a solr.xml and the example was single core, I'm not yet sure what a good idea is. It could be something like, if we find no xxxx.properties in any sub dirs and solrhome has a conf dir sub directory, use the built in back compat, single core solr.xml that we already have in CoreContainer. Then in 5x require the new style. > Deprecate specifying individual information in solr.xml. Possibly deprecate solr.xml entirely > ---------------------------------------------------------------------------------------------------- > > Key: SOLR-4083 > URL: https://issues.apache.org/jira/browse/SOLR-4083 > Project: Solr > Issue Type: Improvement > Components: Schema and Analysis > Affects Versions: 4.1, 5.0 > Reporter: Erick Erickson > Assignee: Erick Erickson > > Spinoff from SOLR-1306. Having a solr.xml file is limiting and possibly unnecessary. We'd gain flexibility by having an "auto-discovery", essentially walking the directories and finding all the cores and just loading them. > Here's an issue to start the discussion of what that would look like. At this point the way I'm thinking about it depends on SOLR-1306, which depends on SOLR-1028, so the chain is getting kind of long. > Straw-man proposal: > 1> system properties can be specified as root paths in the solr tree to start discovery. > 2> the directory walking process will stop going deep (but not wide) in the directories whenever a solrcore.properties file is encountered. That file can contain any of the properties currently specifiable in a tag. This allows, for instance, re-use of a single solrconfig.xml or schema.xml file across multiple cores. I really dont want to get into having cores-within-cores. While this latter is possible, I don't see any advantage. You _can_ have multiple roots and there's _no_ requirement that the cores be in the directory immediately below that root they can be arbitrarily deep. > 3> I'm not quite sure what to do with the various properties in the tag. Perhaps just require these to be system properties? > 4> Notice the title. Does it still make sense to specify <3> in solr.xml but ignore the cores stuff? It seems like so little information will be in solr.xml if we take all the tags out that we should just kill it all together. > 5> Not quite sure what this means for _where_ the cores live. Is it arbitrary? Anywyere on disk? Why not? > 6> core swapping/renaming/whatever. Really, this is about how we model persist="true" on solr.xml. It's easy if we keep solr.xml and just remove the individual core entries. Where to put them? > 7> _if_ we're supposed to persist core admin operations, it seems like we just persist this stuff to the individual solrcore.properties files. Things like whether it's loaded, whether its name has changed (1028 allows lazy loading). > 8> This still provide the capability of your own custom CoreDescriptorProvider, which you'll have to specify somehow. I'm not quite sure where yet. > solr.xml is really the bootstrap for the whole shootin' match. Removing it entirely means we have to specify root directories, zk parameters, whatever somehow. What do people think is the best option here? Leave a degenerate solr.xml? Require system properties be set for any of these options? Currently, the options we'll need are anything (actual or proposed) in the and tags. > So, what the first cut at this would be, building on 1306, is a default CoreDescriptorProvider that ignored all the entries in solr.xml, walked the tree and loaded all the cores found. I claim this is a quick thing to PoC assuming SOLR-1306 and I'll try to provide a patch demonstrating it over the weekend. > But mostly, this is a place to start the discussion about what this would look like rather than have it get lost in SOLR-1306. > finally, note that I have no intention of putting any of this into 4.x at least until we cut the 4.1/4.0.1 whatever. > And, of course, until we fully deprecate solr.xml (5.0?) the current behavior will be the default. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org