4

取引所に複数のキューを設定する必要があります。単一の接続を作成してから、複数のキューを宣言し(これは機能します)、次に複数のキューでメッセージを公開します(これは機能しません)。

これを行うためにいくつかのテストコードを設定しましたが、毎回2回目の公開でハングアップします。このコードは、単一のキューで公開するときに機能するため(単一のキューで複数のメッセージを送信する場合でも)、接続を閉じずに複数のキューで公開するのは好きではないと思います。

これを機能させるために追加する必要があるものはありますか?公開間の接続を閉じる必要がないようにしたいと思います。また、コンシューマーを起動すると、複数のキューで送信するときにbasic_publish()に送信しても、コンシューマーには何も表示されません。単一のキューで公開している場合、メッセージがほぼ瞬時に表示されます。

#!/usr/bin/env python
import pika


queue_names = ['1a', '2b', '3c', '4d']


# Variables to hold our connection and channel
connection = None
channel = None


# Called when our connection to RabbitMQ is closed
def on_closed(frame):
    global connection
    # connection.ioloop is blocking, this will stop and exit the app
    connection.ioloop.stop()



def on_connected(connection):
    """
    Called when we have connected to RabbitMQ
    This creates a channel on the connection
    """
    global channel #TODO: Test removing this global call

    connection.add_on_close_callback(on_closed)

    # Create a channel on our connection passing the on_channel_open callback
    connection.channel(on_channel_open)



def on_channel_open(channel_):
    """
    Called when channel opened
    Declare a queue on the channel
    """
    global channel

    # Our usable channel has been passed to us, assign it for future use
    channel = channel_


    # Declare a set of queues on this channel
    for queue_name in reversed(queue_names):
        channel.queue_declare(queue=queue_name, durable=True,
                              exclusive=False, auto_delete=False,
                              callback=on_queue_declared)
        #print "done making hash"

def on_queue_declared(frame):
    """
    Called when a queue is declared
    """
    global channel

    print "Sending 'Hello World!' on ", frame.method.queue

    # Send a message
    channel.basic_publish(exchange='',
                          routing_key=frame.method.queue,
                          body='Hello World!')


# Create our connection parameters and connect to RabbitMQ
connection = pika.SelectConnection(pika.ConnectionParameters('localhost'), \
                                   on_connected)

# Start our IO/Event loop
try:
    connection.ioloop.start()
except KeyboardInterrupt:
    print "interrupt"
    # Gracefully close the connection
    connection.close()
    # Loop until we're fully closed, will stop on its own
    #connection.ioloop.start()
4

1 に答える 1

2

これに対する私の解決策は、すべてのキューが宣言されているかどうかを変数で追跡することでした。

on_queue_declared()で、この変数をチェックし、すべてのキューが宣言されている場合は、メッセージの公開を開始します。すべてのQueue.DeclareOksを取り戻す前にメッセージを公開しようとすると、問題が発生したと思います。

于 2012-06-29T19:51:57.987 に答える