Coder Social home page Coder Social logo

Comments (4)

dzen avatar dzen commented on May 14, 2024

Hello @chemiron

Well if the doc says so .. it's a bug.
Alternatively, you can call the declare method with passive=True : if the resource does not exist it will raise.
for instance : https://groups.google.com/forum/#!topic/rabbitmq-users/ZTfVwe_HYXc

from aioamqp.

mwfrojdman avatar mwfrojdman commented on May 14, 2024

There's no way to just check for existence with AMQP, one can just assert. Ie, if exchange does exist, then it works, if not, channel is closed with parameters implying the reason.

The same goes for exchange.declare with passive=True. Channel is closed if it doesn't exist.

So if you want to check if an exchange exists, open a new channel, exchange.declare (with passive or without depending on if you want to create the exchange if it doesn't exist) and then

  • receive exchange.declare-ok if it was there, close channel yourself
  • get channel.close from broker with parameters class = exchange and method = declare, and probably reply_code 404 (for not found).

If implementing that to a library, it would probably have to be a method of the connection, because of the opening and closing of a new one shot channel.

from aioamqp.

jkr78 avatar jkr78 commented on May 14, 2024

I can confirm that publishing to non existing exchange (amqp ver. 0.11.0), while in the consumer, closes channel (as it should be from server side) but lib does not fire exception nor on_error callback. So where is no way how to find out if publish succeeded except check for .is_open.

from aioamqp.

dzen avatar dzen commented on May 14, 2024

Hello,

Sorry for the late response, but you have to call confirm_select:

#!/usr/bin/env python
"""
    Rabbitmq.com pub/sub example

    https://www.rabbitmq.com/tutorials/tutorial-four-python.html
"""

import asyncio
import aioamqp

import sys


async def exchange_routing():
    try:
        transport, protocol = await aioamqp.connect('localhost', 5672)
    except aioamqp.AmqpClosedConnection:
        print("closed connections")
        return

    channel = await protocol.channel()
    await channel.confirm_select()
    exchange_name = 'direct_logs'
    severity = sys.argv[1] if len(sys.argv) > 1 else 'info'
    message = ' '.join(sys.argv[2:]) or 'Hello World!'

    #await channel.exchange(exchange_name, 'direct')

    pu = await channel.publish(message, exchange_name=exchange_name, routing_key=severity)
    print(" [x] Sent %r" % (message,))

    await protocol.close()
    transport.close()


asyncio.get_event_loop().run_until_complete(exchange_routing())

which produce :

$ python examples/emit_log_direct.py
only PLAIN login_method is supported, falling back to AMQPLAIN
Traceback (most recent call last):
  File "examples/emit_log_direct.py", line 37, in <module>
    asyncio.get_event_loop().run_until_complete(exchange_routing())
  File "/usr/local/lib/python3.6/asyncio/base_events.py", line 468, in run_until_complete
    return future.result()
  File "examples/emit_log_direct.py", line 29, in exchange_routing
    pu = await channel.publish(message, exchange_name=exchange_name, routing_key=severity)
  File "/home/benoit/Projects/blue/aioamqp/aioamqp/channel.py", line 706, in publish
    await fut
aioamqp.exceptions.ChannelClosed: (404, "NOT_FOUND - no exchange 'direct_logs' in vhost '/'")

from aioamqp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.