Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9B87E200B26 for ; Mon, 27 Jun 2016 09:18:57 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9A1D7160A5B; Mon, 27 Jun 2016 07:18:57 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E0A44160A3C for ; Mon, 27 Jun 2016 09:18:56 +0200 (CEST) Received: (qmail 41840 invoked by uid 500); 27 Jun 2016 07:18:56 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 41830 invoked by uid 99); 27 Jun 2016 07:18:56 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jun 2016 07:18:56 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9461F180651 for ; Mon, 27 Jun 2016 07:18:55 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.426 X-Spam-Level: X-Spam-Status: No, score=-0.426 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id VEU7FeFbP_Mg for ; Mon, 27 Jun 2016 07:18:52 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id 4552B5FB2F for ; Mon, 27 Jun 2016 07:18:51 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 51226E010F for ; Mon, 27 Jun 2016 07:18:50 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 21F5A3A0096 for ; Mon, 27 Jun 2016 07:18:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1750285 - /subversion/site/publish/faq.html Date: Mon, 27 Jun 2016 07:18:48 -0000 To: commits@subversion.apache.org From: jcorvel@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160627071849.21F5A3A0096@svn01-us-west.apache.org> archived-at: Mon, 27 Jun 2016 07:18:57 -0000 Author: jcorvel Date: Mon Jun 27 07:18:48 2016 New Revision: 1750285 URL: http://svn.apache.org/viewvc?rev=1750285&view=rev Log: * site/publish/faq.html (readonly): Move this question to the BDB Questions under the Deprecated FAQ Modified: subversion/site/publish/faq.html Modified: subversion/site/publish/faq.html URL: http://svn.apache.org/viewvc/subversion/site/publish/faq.html?rev=1750285&r1=1750284&r2=1750285&view=diff ============================================================================== --- subversion/site/publish/faq.html (original) +++ subversion/site/publish/faq.html Mon Jun 27 07:18:48 2016 @@ -79,7 +79,6 @@ For older questions, see Should I store my repository / working copy on a NFS server?
  • How do I set repository permissions correctly?
  • -
  • Why do read-only operations still need repository write access?
  • How do I completely remove a file from the repository's history?
  • How do I change the log message for a revision after it's been committed?
  • @@ -1144,32 +1143,6 @@ access the repository.

    -
    -

    Why do read-only operations still need repository -write access? - -

    - -

    Certain client operations are "read-only", like checkouts and -updates. From an access-control standpoint, Apache treats them as -such. But libsvn_fs (the repository filesystem API) still has to -write temporary data in order to produce tree-deltas. So the process -accessing the repository always requires both read and write -access to the Berkeley DB files in order to function.

    - -

    In particular, the repository responds to many "read-only" -operations by comparing two trees. One tree is the usually the HEAD -revision, and the other is often a temporary transaction-tree -- thus -the need for write access.

    - -

    This limitation only applies to the Berkeley DB backend; the FSFS backend does not exhibit this behaviour.

    - -
    - -

    How do I completely remove a file from the repository's history? @@ -4237,6 +4210,7 @@ Berkeley DB a repository is using?
  • After upgrading to Berkeley DB 4.3 or later, I'm seeing repository errors.
  • +
  • Why do read-only operations still need repository write access?
  • @@ -4707,10 +4681,35 @@ etc.) +
    +

    Why do read-only operations still need repository +write access? + +

    + +

    Certain client operations are "read-only", like checkouts and +updates. From an access-control standpoint, Apache treats them as +such. But libsvn_fs (the repository filesystem API) still has to +write temporary data in order to produce tree-deltas. So the process +accessing the repository always requires both read and write +access to the Berkeley DB files in order to function.

    + +

    In particular, the repository responds to many "read-only" +operations by comparing two trees. One tree is the usually the HEAD +revision, and the other is often a temporary transaction-tree -- thus +the need for write access.

    + +

    This limitation only applies to the Berkeley DB backend; the FSFS backend does not exhibit this behaviour.

    +
    + +