Innovenergy_trunk/NodeRed/NodeRedFiles/pika-0.13.1/examples/heartbeat_and_blocked_timeo...

49 lines
1.9 KiB
Python
Raw Normal View History

2024-06-05 10:33:44 +00:00
"""
This example demonstrates explicit setting of heartbeat and blocked connection
timeouts.
Starting with RabbitMQ 3.5.5, the broker's default hearbeat timeout decreased
from 580 seconds to 60 seconds. As a result, applications that perform lengthy
processing in the same thread that also runs their Pika connection may
experience unexpected dropped connections due to heartbeat timeout. Here, we
specify an explicit lower bound for heartbeat timeout.
When RabbitMQ broker is running out of certain resources, such as memory and
disk space, it may block connections that are performing resource-consuming
operations, such as publishing messages. Once a connection is blocked, RabbiMQ
stops reading from that connection's socket, so no commands from the client will
get through to te broker on that connection until the broker unblocks it. A
blocked connection may last for an indefinite period of time, stalling the
connection and possibly resulting in a hang (e.g., in BlockingConnection) until
the connection is unblocked. Blocked Connectin Timeout is intended to interrupt
(i.e., drop) a connection that has been blocked longer than the given timeout
value.
"""
import pika
def main():
# NOTE: These paramerers work with all Pika connection types
params = pika.ConnectionParameters(heartbeat_interval=600,
blocked_connection_timeout=300)
conn = pika.BlockingConnection(params)
chan = conn.channel()
chan.basic_publish('', 'my-alphabet-queue', "abc")
# If publish causes the connection to become blocked, then this conn.close()
# would hang until the connection is unblocked, if ever. However, the
# blocked_connection_timeout connection parameter would interrupt the wait,
# resulting in ConnectionClosed exception from BlockingConnection (or the
# on_connection_closed callback call in an asynchronous adapter)
conn.close()
if __name__ == '__main__':
main()