Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 1129 invoked from network); 3 Jul 2009 16:50:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Jul 2009 16:50:09 -0000 Received: (qmail 33183 invoked by uid 500); 3 Jul 2009 16:50:20 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 33123 invoked by uid 500); 3 Jul 2009 16:50:20 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 33114 invoked by uid 99); 3 Jul 2009 16:50:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Jul 2009 16:50:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Jul 2009 16:50:15 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id E9A69118AE for ; Fri, 3 Jul 2009 16:49:53 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: commits@jackrabbit.apache.org Date: Fri, 03 Jul 2009 16:49:53 -0000 Message-ID: <20090703164953.1212.47173@eos.apache.org> Subject: [Jackrabbit Wiki] Update of "Clustering" by AlexanderKlimetschek X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Jackrabbit Wiki" for change notification. The following page has been changed by AlexanderKlimetschek: http://wiki.apache.org/jackrabbit/Clustering The comment on the change is: added info on how clustering and datastore work together ------------------------------------------------------------------------------ - Clustering in Jackrabbit works as follows: content is shared between all cluster nodes. That means all Jackrabbit cluster nodes need access to the SAME persistent storage (persistence manager and data store). The [PersistenceManagerFAQ persistence manager] must be clusterable (eg. central database that allows for concurrent access); any DataStore (file or DB) is clusterable by its very nature, as they store content by unique hash ids. However, each cluster node needs its own (private) FileSystem and ["Search"] index. + Clustering in Jackrabbit works as follows: content is shared between all cluster nodes. That means all Jackrabbit cluster nodes need access to the SAME persistent storage (persistence manager and data store). + + The persistence manager must be clusterable (eg. central database that allows for concurrent access, see ["PersistenceManagerFAQ"]); any DataStore (file or DB) is clusterable by its very nature, as they store content by unique hash ids. However, each cluster node needs its own (private) FileSystem and ["Search"] index. Every change made by one cluster node is reported in a journal, which can be either file based or written to some database. @@ -11, +13 @@ * Each cluster node must have its own repository configuration * Every cluster node must be assigned a unique ID * A journal type must be chosen, either based on files or stored in a database - * The persistence managers must store their data in the same, globally accessible location + * The persistence managers must store their data in the same, globally accessible location (see ["PersistenceManagerFAQ"]) + * A DataStore must always be shared between nodes, if used === Unique Cluster Node ID ===