Return-Path: Delivered-To: apmail-jackrabbit-users-archive@locus.apache.org Received: (qmail 45421 invoked from network); 21 Sep 2007 16:14:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Sep 2007 16:14:33 -0000 Received: (qmail 16839 invoked by uid 500); 21 Sep 2007 16:14:22 -0000 Delivered-To: apmail-jackrabbit-users-archive@jackrabbit.apache.org Received: (qmail 16825 invoked by uid 500); 21 Sep 2007 16:14:22 -0000 Mailing-List: contact users-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@jackrabbit.apache.org Delivered-To: mailing list users@jackrabbit.apache.org Received: (qmail 16706 invoked by uid 99); 21 Sep 2007 16:14:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2007 09:14:21 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of thomas.tom.mueller@gmail.com designates 209.85.132.247 as permitted sender) Received: from [209.85.132.247] (HELO an-out-0708.google.com) (209.85.132.247) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2007 16:14:22 +0000 Received: by an-out-0708.google.com with SMTP id c37so142647anc for ; Fri, 21 Sep 2007 09:14:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=U7t3PcvCRL8zE2uBU4b4chcXb3I3Sh/IwaN9bGuFezs=; b=YchUAZIHJiG/Co8C5vfVl3Ml6ds+5HGGoL314I+uRWyC065j4eEAOWgcAP5efproK4ciCRLwfVfvFygmiJScK3FAMJ7cx4OvaSYj/w0BcaqpiNg1/NzD71B7NuVUuOVDaXwrmKXxAVc435KF9yHK6tV7vZCvlu26A3v6wV+N8Mw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pxLZ1MzxMWS5j13Zgp1kc43ubfCLhonv1YQae+MmnPREoFVsTbak6ixYX1fj2ITgtrGJ3DeAo+lt9NnZADRWFi8fBg2lyDcab/a6eoAls/9UsP1ggeZWJoq9zk+/zb0atRVrXIcnj6w7I4TdvpDP3XJdDDE9YUcp81SJ84KppQ4= Received: by 10.100.132.16 with SMTP id f16mr6345080and.1190391241760; Fri, 21 Sep 2007 09:14:01 -0700 (PDT) Received: by 10.64.253.5 with HTTP; Fri, 21 Sep 2007 09:14:01 -0700 (PDT) Message-ID: <5f211bd50709210914n20c31007kf77032a06a1d0167@mail.gmail.com> Date: Fri, 21 Sep 2007 18:14:01 +0200 From: "Thomas Mueller" To: users@jackrabbit.apache.org Subject: Re: FileDataStore configuration In-Reply-To: <46F3EA8D.6050200@cern.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2123A704743EB34295B4AA1DB09475680227CBCB@jaxmsx02.nemours.org> <46F3EA8D.6050200@cern.ch> X-Virus-Checked: Checked by ClamAV on apache.org Hi, The data store is not included in Jackrabbit 1.3.x. You need to download the source trunk source code and build Jackrabbit yourself. Running the garbage collection is currently a manual process. You can run this as a separate thread concurrently to your application: import org.apache.jackrabbit.core.data.GarbageCollector; ... GarbageCollector gc = new GarbageCollector(null, 0); gc.scan(session); gc.stopScan(); gc.deleteUnused(); I have updated the documentation at http://wiki.apache.org/jackrabbit/DataStore Thomas On 9/21/07, Lorenzo Dini wrote: > Hi, > > I would like to integrate my BundlePersistenceManager (MySql) with a > FileDataStore because I have about 30Gb to be stored in the repository. > > I am inserting the tag in the repository.xml file as you describe in the > WIKI page (http://wiki.apache.org/jackrabbit/DataStore) but the > FileDataStore is not loaded. > > I have also checked in the Jackrabbit core jar file but the class is not > there and I could not find it in any jars of Jackrabbit 1.3.1. > > Can you please give me some hints on how to find the jar and how to > properly configure Jackrabbit to use it instead of BLOBs?? > > I would like also to know how launch the GarbageCollector mentioned (in > the only manual way currently available). > > Thank you > > Lorenzo > > > -- > *Lorenzo Dini* > > CERN - European Organization for Nuclear Research > Information Technology Department > CH-1211 Geneva 23 > > Building 28 - Office 1-007 > Phone: +41 (0) 22 7674384 > Fax: +41 (0) 22 7668847 > E-mail: Lorenzo.Dini@cern.ch >