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 B9FC2F5E0 for ; Mon, 8 Apr 2013 16:57:51 +0000 (UTC) Received: (qmail 16296 invoked by uid 500); 8 Apr 2013 16:57:46 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 16220 invoked by uid 500); 8 Apr 2013 16:57:46 -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 16185 invoked by uid 99); 8 Apr 2013 16:57:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 16:57:46 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [64.142.16.245] (HELO a.mail.sonic.net) (64.142.16.245) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Apr 2013 16:57:40 +0000 Received: from BHLMacAir.local (173-228-119-102.dsl.dynamic.sonic.net [173.228.119.102]) (authenticated bits=0) by a.mail.sonic.net (8.13.8.Beta0-Sonic/8.13.7) with ESMTP id r38GvIIb019766 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 8 Apr 2013 09:57:19 -0700 Message-ID: <5162F6EF.7000404@sonic.net> Date: Mon, 08 Apr 2013 09:57:19 -0700 From: Kuro Kurosaka User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20130328 Thunderbird/17.0.5 MIME-Version: 1.0 To: solr-user@lucene.apache.org Subject: Re: Moving from SOLR3.6 to SOLR4.0 - Last remaining warnings References: <1365419066380-4054459.post@n3.nabble.com> In-Reply-To: <1365419066380-4054459.post@n3.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Here's my guess. On 4/8/13 4:04 AM, Spadez wrote: > 11:56:41 > WARNING > IndexSchema > uniqueKey is not stored - distributed search and MoreLikeThis will not work I think the warning is saying the field you specify in does not specify stored="true". Check your schema.xml. > 11:56:41 > WARNING > SolrCore > [collection1] Solr index directory > '/opt/solr/example/solr/collection1/data/index' doesn't exist. Creating new index... This is normal. > 11:56:42 > WARNING > UpdateRequestHandler > Using deprecated class: XmlUpdateRequestHandler -- replace with UpdateRequestHandler > 11:56:42 > WARNING > UpdateRequestHandler > Using deprecated class: BinaryUpdateRequestHandler -- replace with UpdateRequestHandler UpdateRequestHandler now takes care of XML, JSON, CSV and binary document formats by itself. No specialized subclasses like XmlUpdateRequestHandler should be used. All these deprecated subclasses add is output of this deprecation warning. But you can ignore these warnings for this version of Solr. -- Kuro Kurosaka