Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 321A011B1A for ; Wed, 21 May 2014 16:11:41 +0000 (UTC) Received: (qmail 35564 invoked by uid 500); 21 May 2014 16:11:38 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 35493 invoked by uid 500); 21 May 2014 16:11:38 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 35485 invoked by uid 99); 21 May 2014 16:11:38 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2014 16:11:38 +0000 X-ASF-Spam-Status: No, hits=2.7 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_REPLY,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of amantandon.10@gmail.com designates 209.85.212.176 as permitted sender) Received: from [209.85.212.176] (HELO mail-wi0-f176.google.com) (209.85.212.176) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 May 2014 16:11:32 +0000 Received: by mail-wi0-f176.google.com with SMTP id n15so7933056wiw.15 for ; Wed, 21 May 2014 09:11:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=EMZColKNLFU4ygvLC0FgvoQUh6qjMjXN/UOdD8Nl2T4=; b=ofQDvZZXYxvZAtDHGD/Q1MZZIaKwLajX/jP/9lMDmlXqnjJjlNSyCvVR3m2oK5E7YY 0/J2RMMf2AjrZfRYFEIZmZprIlOyf+yzYrmklEWBXVrwmm7AdRcf/5Kjf4j7noyS3+90 xnXZog4FUAqj2aUV4FlSv5NWxHNoylcQNKMBYVhfoPpF6rYmBysLPYZd3LC4MIxHrQAr 8+0+q6BkI7g0/GDteJYu6DgpDKoEGyiEMiJHEwDo5iyVHqpQ3cBirJy/v3BeXc8WEPL0 5E0n2vZ43p7Z8I0NzRBVHDAnpIt/UuLidYdalsTp4trbGLcF7anAJzeq0QenHZkqHV+s TdrQ== X-Received: by 10.180.160.205 with SMTP id xm13mr11381236wib.13.1400688671791; Wed, 21 May 2014 09:11:11 -0700 (PDT) MIME-Version: 1.0 Received: by 10.217.66.129 with HTTP; Wed, 21 May 2014 09:10:51 -0700 (PDT) In-Reply-To: References: From: Aman Tandon Date: Wed, 21 May 2014 21:40:51 +0530 Message-ID: Subject: Re: core.properties setup help To: "solr-user@lucene.apache.org" Content-Type: multipart/alternative; boundary=047d7b62494eb9268604f9eb3ee3 X-Virus-Checked: Checked by ClamAV on apache.org --047d7b62494eb9268604f9eb3ee3 Content-Type: text/plain; charset=UTF-8 Thanks erick for suggestion, yeah you is right i am doing some hurry to implement it, i will invest some time to properly understand the working of SolrCloud :) With Regards Aman Tandon On Wed, May 21, 2014 at 8:38 PM, Erick Erickson wrote: > then don't worry about cores. Use the collections API to create your > collections. > > Note: you use the ZkCli script to push configuration files up to ZK > and give them a name, so you can have your "mcat" and "cat" > configurations. Then when you create the collection, you tell it which > set of configuration files to use. > > I _really_ suggest you slow down and read up on SolrCloud. It sounds > like you're jumping ahead and trying to do this all the hard way. > Understand the tools, particularly the Collections API and how > ZooKeeper stores configuration sets and associates them with > collections. > > Best, > Erick > > On Wed, May 21, 2014 at 12:13 AM, Aman Tandon > wrote: > > Thanks Erick for replying, actually i need to configure this for > solrcloud > > so i am confused here. > > Both mcat and cat have different schema in my case. > > > > With Regards > > Aman Tandon > > > > > > On Tue, May 20, 2014 at 6:05 AM, Erick Erickson >wrote: > > > >> You can actually just remove those entries from solr.xml (and all the > >> stuff). > >> > >> Then create a core.properties with > >> name=cat > >> and > >> name=mcat > >> > >> respectively. > >> > >> Actually, you don't even need to put that in. Just put an empty > >> core.properties file in the respective dirs. The name of the core > >> defaults to the directory it's in. > >> > >> Best, > >> Erick > >> > >> On Thu, May 15, 2014 at 11:47 PM, Aman Tandon > >> wrote: > >> > Any help here.?? > >> > > >> > With Regards > >> > Aman Tandon > >> > > >> > > >> > On Thu, May 15, 2014 at 7:33 PM, Aman Tandon >> >wrote: > >> > > >> >> Hi, > >> >> > >> >> In my solr-4.2 we were using the two cores as described below: > >> >> > >> >> > >> >> >> >> hostContext="${hostContext:}" > >> zkClientTimeout="${zkClientTimeout:15000}"> > >> >> instanceDir="../cores/cat/"/> > >> >> instanceDir="../cores/mcat/"/> > >> >> > >> >> > >> >> > >> >> How should i setup the solr 4.7 for the core.properties of mcat and > cat > >> >> cores for using the solrcloud? > >> >> > >> >> With Regards > >> >> Aman Tandon > >> >> > >> > --047d7b62494eb9268604f9eb3ee3--