Return to site

Pika Asyncioconnection

broken image


python 连接操作rabbitMQ 主要是使用pika库

Pika asyncioconnection

官方对于pika有如下介绍

线程并不适用于每种场景, 因此并不要求使用线程。 但是pika并不禁用线程, 对于

From pika import URLParameters, ConnectionParameters: from pika. Tornadoconnection import TornadoConnection: from pika. Asyncioconnection import AsyncioConnection: from tornado import gen: from tornado. Ioloop import IOLoop: from tornado. Queues import Queue, QueueEmpty: class AsyncConnection: INITSTATUS = 'init. 0 players online play.pika-network.net. 0 Join Our Discord. Home Forums Vote Staff Rules Bans Store. This month we have a total of 79,304 votes! Feel free to vote for in-game rewards on any the following links every 24 hours: Vote Link #1. A pika (/ ˈ p aɪ k ə / PY-kə; archaically spelled pica) is a small, mountain-dwelling mammal found in Asia and North America. With short limbs, very round body, an even coat of fur, and no external tail, they resemble their close relative, the rabbit, but with short, rounded ears. The large-eared pika of the Himalayas and nearby mountains is found at heights of more than 6,000 m (20,000 ft. Return adapters.AsyncioConnection(pika.URLParameters(self.url), self.onconnectionopen) の使用AsyncioConnectionは、次のあなたのループがすでに接続して開始されるのでライン以下. Self.connection.ioloop.start #throws exception but not a problem. The properties passed in is an instance of BasicProperties with the message properties and the body is the message that was sent.:param pika.channel.Channel unusedchannel: The channel object:param pika.Spec.Basic.Deliver: basicdeliver method:param pika.Spec.BasicProperties: properties:param str unicode body: The message body ' LOGGER.

greenlets, callbacks也一样。 一个pika建立的连接并不是线程安全的

因此在多线程中共享一个pika连接不是线程安全的, 当然也有一种使用:

使用add_callback_threadsafe方法callback 一个pika连接从另外一个线程中

pika提供建立连接方式:

环境说明

操作系统ip主机名配置rabbitmq版本
centos 6.9192.168.31.7mq_011核2g3.8.2
centos 6.9192.168.31.216mq_021核2g3.8.2
centos 6.9192.168.31.214mq_031核2g3.8.2
ubuntu 16.04192.168.31.229mq_client1核2gN/A

注意:3台mq服务器,已经开启ssl。开启ssl之后,使用明文传输和使用ssl传输,都是可以的。

最经典的hello world

生产者

producer.py

执行脚本

消费者

consumer.py

执行脚本

使用CTRL+C 结束脚本

客户端采用的是ubuntu 16.04,因为发现centos 7.6编译python 3.7时,导入ssl报错,无法解决。

ubuntu 16.04可以解决导入ssl模块问题。

ubuntu 16.04安装python3-openssl

生产者

Pika Asyncioconnection

下载github示例代码,编辑配置文件

Asyncioconnection

官方对于pika有如下介绍

线程并不适用于每种场景, 因此并不要求使用线程。 但是pika并不禁用线程, 对于

From pika import URLParameters, ConnectionParameters: from pika. Tornadoconnection import TornadoConnection: from pika. Asyncioconnection import AsyncioConnection: from tornado import gen: from tornado. Ioloop import IOLoop: from tornado. Queues import Queue, QueueEmpty: class AsyncConnection: INITSTATUS = 'init. 0 players online play.pika-network.net. 0 Join Our Discord. Home Forums Vote Staff Rules Bans Store. This month we have a total of 79,304 votes! Feel free to vote for in-game rewards on any the following links every 24 hours: Vote Link #1. A pika (/ ˈ p aɪ k ə / PY-kə; archaically spelled pica) is a small, mountain-dwelling mammal found in Asia and North America. With short limbs, very round body, an even coat of fur, and no external tail, they resemble their close relative, the rabbit, but with short, rounded ears. The large-eared pika of the Himalayas and nearby mountains is found at heights of more than 6,000 m (20,000 ft. Return adapters.AsyncioConnection(pika.URLParameters(self.url), self.onconnectionopen) の使用AsyncioConnectionは、次のあなたのループがすでに接続して開始されるのでライン以下. Self.connection.ioloop.start #throws exception but not a problem. The properties passed in is an instance of BasicProperties with the message properties and the body is the message that was sent.:param pika.channel.Channel unusedchannel: The channel object:param pika.Spec.Basic.Deliver: basicdeliver method:param pika.Spec.BasicProperties: properties:param str unicode body: The message body ' LOGGER.

greenlets, callbacks也一样。 一个pika建立的连接并不是线程安全的

因此在多线程中共享一个pika连接不是线程安全的, 当然也有一种使用:

使用add_callback_threadsafe方法callback 一个pika连接从另外一个线程中

pika提供建立连接方式:

环境说明

操作系统ip主机名配置rabbitmq版本
centos 6.9192.168.31.7mq_011核2g3.8.2
centos 6.9192.168.31.216mq_021核2g3.8.2
centos 6.9192.168.31.214mq_031核2g3.8.2
ubuntu 16.04192.168.31.229mq_client1核2gN/A

注意:3台mq服务器,已经开启ssl。开启ssl之后,使用明文传输和使用ssl传输,都是可以的。

最经典的hello world

生产者

producer.py

执行脚本

消费者

consumer.py

执行脚本

使用CTRL+C 结束脚本

客户端采用的是ubuntu 16.04,因为发现centos 7.6编译python 3.7时,导入ssl报错,无法解决。

ubuntu 16.04可以解决导入ssl模块问题。

ubuntu 16.04安装python3-openssl

生产者

Pika Asyncioconnection

下载github示例代码,编辑配置文件

修改红色部分

注意:由于证书是不受信任的,因此必须要关闭证书验证,否则会运行报错,提示证书验证失败!

执行脚本

消费者

执行脚本

使用CTRL+C 结束脚本

备注:

这个github项目也提供了java测试代码,但是里面提供的p12和jks证书文件不对。

需要使用python文件的3个文件,转换一下才行。

在线转换连接:

转换p12,证书密码填:rabbitstore

下载之后,会得到一个 DESKTOP-T8LNPRN.pfx。

Pika Asyncio Connection

Bluetail 2 3 – easy to use vector drawing applications. 由于pfx和p12是同一类型文件,将后缀重名的为p12即可。

转换jks

下载之后,会得到一个 DESKTOP-T8LNPRN.jks

本文参考链接:

posted @ 2020-02-14 19:14肖祥 阅读(216) 评论(0) 编辑收藏




broken image