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 6DED7179B5 for ; Sun, 19 Apr 2015 11:48:27 +0000 (UTC) Received: (qmail 56639 invoked by uid 500); 19 Apr 2015 11:48:21 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 56574 invoked by uid 500); 19 Apr 2015 11:48:21 -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 56559 invoked by uid 99); 19 Apr 2015 11:48:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Apr 2015 11:48:21 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: message received from 54.164.171.186 which is an MX secondary for solr-user@lucene.apache.org) Received: from [54.164.171.186] (HELO mx1-us-east.apache.org) (54.164.171.186) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Apr 2015 11:48:13 +0000 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTPS id 5571843E46 for ; Sun, 19 Apr 2015 11:47:52 +0000 (UTC) Received: by widdi4 with SMTP id di4so68235877wid.0 for ; Sun, 19 Apr 2015 04:46:15 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:references:from:content-type:in-reply-to :message-id:date:to:content-transfer-encoding:mime-version; bh=rGBGI2FUXeKoEPc70dCjkpQFg5DPj9cngtoV+W5rJEI=; b=YRg+/dWy8vNWffRMpPhObvQ2AtyHR2W+TprQoqMi9TJLXV/90TtRPl/IW3yf/50ycN INlAJMriZNYwwXf46Fhkvz5YpNTi7p3h4/ga0D54IUqLAJDFsxWr+nM2TLx+HhxiUeTc NJTAsAQl/l0ZpacgT0E7GNIYxKwIroCP8pbKgLh62tv6hCmgngScIInbf52Aexa5s7Ax ZAsxgG2YDdzqmLFT6RKv6NXYPPxCoUptUbDysSB/IQBfp7t9T4/tj+HwA8FgM2xfuJoT a2R+wbKu/cjP/H1nst3dKOYRFdQ8ZgHQBB8mtN6dMQViHw9Ey+OZyA405jnTtdK+Uak3 SS0A== X-Gm-Message-State: ALoCoQnaLl4yayGcZQicvym3Fzdp3fR1PId+zYN8g9lWKfaC3+jmlObqn1verJDz+SYNofrlIaKn X-Received: by 10.194.157.39 with SMTP id wj7mr22072198wjb.57.1429443975316; Sun, 19 Apr 2015 04:46:15 -0700 (PDT) Received: from [10.51.32.166] (tmo-107-167.customers.d1-online.com. [80.187.107.167]) by mx.google.com with ESMTPSA id h5sm22737406wjn.20.2015.04.19.04.46.13 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 19 Apr 2015 04:46:14 -0700 (PDT) Subject: Re: Replication for SolrCloud References: <55320581.60307@devoteam.com> From: "juergen.wagner@devoteam.com" Content-Type: text/plain; charset=utf-8 X-Mailer: iPhone Mail (11D257) In-Reply-To: Message-Id: <708D87FF-89CC-42C9-8F20-A1FD7A1312AC@devoteam.com> Date: Sun, 19 Apr 2015 13:46:10 +0200 To: "solr-user@lucene.apache.org" Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (1.0) X-Virus-Checked: Checked by ClamAV on apache.org In simple words: HDFS is good for file-oriented replication. Solr is good for index replicati= on. Consequently, if atomic file update operations of an application (like Solr)= are not atomic on a file level, HDFS is not adequate - like for Solr with l= ive index updates. Running Solr on HDFS (as a file system) will pose limitat= ions due to HDFS properties. Indexing, however, still won't use Hadoop. If you produce indexes and distribute them as finalized, read-only structure= s (e.g., through Hadoop jobs), HDFS is fine. Solr does not need to be much a= ware of HDFS. The third one in the picture is records-based replication to be handled by H= base, Cassandra or Zookeeper, depending on requirements. Cheers, J=C3=BCrgen=