<br><br><div class="gmail_quote">On Fri, Aug 17, 2012 at 3:13 PM, Matt Pietrek <span dir="ltr">&lt;<a href="mailto:mpietrek@skytap.com" target="_blank">mpietrek@skytap.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

I&#39;ve been drilling into an issue for a few days where my Pika channel is abruptly closed. I&#39;m pretty sure I&#39;ve found either:<br><ul><li>A large gap in my understanding</li><li>A misuse of the Rabbit/Pika APIs</li>

</ul></blockquote><div>Depending on your perspective, this seems the most likely, in that there is not any logic in Pika for managing Tx. It lets you send the RPC calls and leaves it to you to manage state outside of the connection/channel.�</div>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><ul>
<li>A serious bug in Pika.</li></ul><p>My original understanding about transactions is that calling tx_select() is a synchronous operation, and that when it returns, whatever actions you&#39;ve sent to the broker are committed.</p>


<p>However, in stepping through the Pika tx_commit() code, it seems like it all it does is add the Tx.Commit message to an outgoing buffer, and that the tx_commit() call returns without anything actually sent to the broker. (I&#39;ve set breakpoints in the debugger at strategic points to verify this.)</p>

</blockquote><div>This is correct, because pika is event-loop driven, it is putting the frame in the output buffer and returning to you. The event loop will write the data out as the operating system tells it it can You are correct that it is not blocking on the Tx.Commit until the data is written over the socket.</div>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<p>In my message handler, I&#39;m writing a reply to the incoming message, using the same channel. What I&#39;m seeing (verified via WireShark) is that the Tx.Commit message is followed by some number of Basic.Publish, Content-Header, and Content-Body records corresponding to my reply message writes.</p>

</blockquote><div>Your frames are sent in the order the methods are called.�</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><p> This violates the AMQP standard, which says that nothing should be sent to the broker after sending a Tx.Commit and before receiving a Tx.Commit-Ok reply. (If it helps understanding, my incoming message queue has a few messages in it already, so I see a series of incoming messages immediately after starting.)<br>

</p></blockquote><div>You should add a callback for the Tx.Commit-Ok reply and then send your messages. You are correct that Pika is not enforcing the behavior of blocking until Tx.Commit-Ok.</div><div><br></div><div>You could open a 2nd channel and send your replies over that.�</div>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><p>
</p><p>I see that the tx_commit() method takes a callback method, but if I were to simply block in my message handler, waiting for the callback to be invoked, I&#39;d deadlock because Pika&#39;s buffer processing code doesn&#39;t get a chance to run.<br>

</p></blockquote><div>How are you blocking? If you&#39;re using any truly blocking method, it will stop the event loop from running. Since you&#39;re on the async loop, I&#39;d use a timer and a state variable to toggle between the various states you&#39;re trying to achieve.</div>

<div><br></div><div>Gavin</div></div><br>