Return-Path: Delivered-To: apmail-couchdb-dev-archive@www.apache.org Received: (qmail 48738 invoked from network); 14 Sep 2010 01:23:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Sep 2010 01:23:55 -0000 Received: (qmail 80002 invoked by uid 500); 14 Sep 2010 01:23:55 -0000 Delivered-To: apmail-couchdb-dev-archive@couchdb.apache.org Received: (qmail 79935 invoked by uid 500); 14 Sep 2010 01:23:54 -0000 Mailing-List: contact dev-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list dev@couchdb.apache.org Received: (qmail 79927 invoked by uid 99); 14 Sep 2010 01:23:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Sep 2010 01:23:54 +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; Tue, 14 Sep 2010 01:23:53 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8E1NXZm008380 for ; Tue, 14 Sep 2010 01:23:33 GMT Message-ID: <27396435.169261284427413466.JavaMail.jira@thor> Date: Mon, 13 Sep 2010 21:23:33 -0400 (EDT) From: "Randall Leeds (JIRA)" To: dev@couchdb.apache.org Subject: [jira] Commented: (COUCHDB-887) _log handler has very odd semantics for bytes/offset, probably a bug In-Reply-To: <22049148.168931284426394211.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/COUCHDB-887?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12909083#action_12909083 ] Randall Leeds commented on COUCHDB-887: --------------------------------------- Your patch reverses the semantics of offset, but it's not clear that one is more right. If your intuition about offet being a negative from the end is right, then I'd expect: Start = lists:max([LogFileSize - Offset]) where Bytes determines how many bytes to read, but has no effect on where reading begins. However, in either case I think you're right that Bytes should be passed to file:pread/3 instead of LogFileSize. > _log handler has very odd semantics for bytes/offset, probably a bug > -------------------------------------------------------------------- > > Key: COUCHDB-887 > URL: https://issues.apache.org/jira/browse/COUCHDB-887 > Project: CouchDB > Issue Type: Bug > Components: HTTP Interface > Affects Versions: 0.11, 0.11.1, 0.11.2, 1.0, 1.0.1 > Reporter: Nuutti Kotivuori > Priority: Trivial > Attachments: couch_log.erl.diff > > > The _log method for couchdb servers has query arguments "bytes" and "offset", but they seem to behave really weirdly. If offset >= bytes, an eof error is returned - otherwise offset is just substracted from bytes and the request behaves identically otherwise. > A simple fix to the expected behaviour is included - offset counts backwards from bytes. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.