断开连接时,NATS不会引发异常

时间:2018-03-05 12:37:22

标签: python-asyncio nats.io

我使用了几乎在python asyncio上使用NATS的标准示例。我想收到一条消息,处理它,然后发送结果 返回队列,但是当NATS断开连接时(例如重启gnats),异常不会引发。我甚至等待asyncio.sleep (1, loop = loop)改变上下文 和断开 - >抛出重新连接异常,但这不会发生。我究竟做错了什么?可能是个错误吗?

import asyncio
from nats.aio.client import Client as NATS
import time


async def run(loop):
    nc = NATS()

    await nc.connect(io_loop=loop)

    async def message_handler(msg):
        subject = msg.subject
        reply = msg.reply
        data = msg.data.decode()
        print("Received a message on '{subject} {reply}': {data}".format(
            subject=subject, reply=reply, data=data))

        # Working
        time.sleep(10)

        # If nats disconnects at this point, the exception will not be caused
        # and will be made attempt to send a message by nc.publish
        await asyncio.sleep(2, loop=loop)

        print("UNSLEEP")
        await nc.publish("test", "test payload".encode())
        print("PUBLISHED")

    # Simple publisher and async subscriber via coroutine.
    await nc.subscribe("foo", cb=message_handler)

    while True:
        await asyncio.sleep(1, loop=loop)

    await nc.close()

if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(run(loop))
    loop.close()

1 个答案:

答案 0 :(得分:1)

NAT建立在TCP之上。

根据定义,TCP没有可靠的断开信号。 要解决此问题任何邮件系统应使用一种 ping 消息,并在发生超时时删除连接。

严格来说,有时会发生断线事件,但最多可能需要2小时(取决于您的操作系统设置)。