Return-Path: Delivered-To: apmail-activemq-users-archive@www.apache.org Received: (qmail 23453 invoked from network); 16 Sep 2010 15:25:48 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Sep 2010 15:25:48 -0000 Received: (qmail 17857 invoked by uid 500); 16 Sep 2010 15:25:48 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 17746 invoked by uid 500); 16 Sep 2010 15:25:46 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 17738 invoked by uid 99); 16 Sep 2010 15:25:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 15:25:45 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of james.mk.green@gmail.com designates 209.85.212.43 as permitted sender) Received: from [209.85.212.43] (HELO mail-vw0-f43.google.com) (209.85.212.43) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Sep 2010 15:25:39 +0000 Received: by vws8 with SMTP id 8so2002260vws.2 for ; Thu, 16 Sep 2010 08:25:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=CIzVxNqXIAuhaK0m2RRvEoLPlYNiYW998aUMoD8qkww=; b=VGHdGezNA3qcAho5e1rIBZ/XwGa64gc7mELhZFcxbr8Au6d76cWARgFRyXXp8EP9Zl ti0qXsVtBJWd42oYxBSrW6HFD08UknYXX5ThCVSoNL9unJmMDQfd9nPBun8Q0gLAsh9K eNaZge25DJsbDoyxnzEUVkNX+q3fmHOEkWiuU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=yHBhQKMuHtODyIJdS25TcSOn3ev28pjesvBql2SBGJVELQIAODqWjXI06aKKeGl/3U /KmcnU6lOpf32dBvOWO8R1GYHRl4C39y3LxQsTWxzscp+YrbAdx3FXH3oanzzi54WEys d7Rk05EPTHfg0VoUR96dPJl758cIR0Kzbpano= MIME-Version: 1.0 Received: by 10.220.98.140 with SMTP id q12mr2278071vcn.128.1284650718263; Thu, 16 Sep 2010 08:25:18 -0700 (PDT) Received: by 10.220.175.201 with HTTP; Thu, 16 Sep 2010 08:25:18 -0700 (PDT) In-Reply-To: References: Date: Thu, 16 Sep 2010 16:25:18 +0100 Message-ID: Subject: Re: FIFO order - just not quite From: James Green To: users Content-Type: text/plain; charset=ISO-8859-1 I have finally triggered this problem with stomp tracing and have logged a bug with log file attached: https://issues.apache.org/activemq/browse/AMQ-2923 Entirely possible I'm using ActiveMQ improperly. I would appreciate some assistance to confirm one way or another. James On 14 September 2010 16:16, James Green wrote: > Hi, > > I've been trying to debug an odd sequence problem. I've written a > basic test case in PHP using the stomp connector. > > First script adds ten numbered messages (indexed from 0) to a test queue. > Second script receives from the queue and spits them out. > > They arrive in the order: 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 > > I was expecting: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 > > Any ideas why it seems to be FIFO - except the first message which > comes out last? For my app it is critical to receive the messages in > the correct (as they are produced) order. > > My config is pretty close to the shipped example. ActiveMQ 5.4.0. > > James >