Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 30449 invoked from network); 1 Dec 2010 14:46:36 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Dec 2010 14:46:36 -0000 Received: (qmail 79829 invoked by uid 500); 1 Dec 2010 14:46:35 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 79770 invoked by uid 500); 1 Dec 2010 14:46:35 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 79760 invoked by uid 99); 1 Dec 2010 14:46:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Dec 2010 14:46:34 +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.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Dec 2010 14:46:34 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id oB1EkDjt010967 for ; Wed, 1 Dec 2010 14:46:13 GMT Message-ID: <17944810.46991291214773816.JavaMail.jira@thor> Date: Wed, 1 Dec 2010 09:46:13 -0500 (EST) From: "Uwe Schindler (JIRA)" To: dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-2787) disable atime for DirectIOLinuxDirectory In-Reply-To: <4142185.46581291213153058.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-2787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12965701#action_12965701 ] Uwe Schindler commented on LUCENE-2787: --------------------------------------- bq. The option exists specifically for apps like lucene... see the description from the man page!!!! The intention behind the man page is not for the part of the app that manages the *index* itsself (like Lucene) - it is for the part of the app, that *reads* files *to index them* (so that would be the app that uses lucene and e.g. uses TIKA to read all files, this one should set noatime). The idea is to not mark the file as "accessed" when the virus scanner or the KDE/gnome file system browser indexes it. Simon is right about setting it as a mount option. > disable atime for DirectIOLinuxDirectory > ---------------------------------------- > > Key: LUCENE-2787 > URL: https://issues.apache.org/jira/browse/LUCENE-2787 > Project: Lucene - Java > Issue Type: Improvement > Components: contrib/* > Reporter: Robert Muir > Fix For: 3.1, 4.0 > > Attachments: LUCENE-2787.patch > > > In Linux's open(): > O_NOATIME > (Since Linux 2.6.8) Do not update the file last access time (st_atime in the inode) when the file is read(2). This flag is intended for use by indexing or backup programs, where its use can significantly reduce the amount of disk activity. This flag may not be effective on all filesystems. One example is NFS, where the server maintains the access time. > So we should do this in our linux-specific DirectIOLinuxDirectory. > Separately (offtopic), it would be better if this was a LinuxDirectory that only uses O_DIRECT when it should :) > It would be nice to think about an optional modules/native for common platforms similar to what tomcat provides > Its easier to test directories like this now (-Dtests.directory)... -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org