Skip to content

[Questions] RabbitMQ keeps closing AMQP connection after missed heartbeats. #13627

Closed Answered by lukebakken
maxi07 asked this question in Questions
Discussion options

You must be logged in to vote

Your service1 code blocks Pika's I/O loop, thus causing heartbeats to fail.

Try changing to this:

while True:
    try:
        connection.process_data_events(1)

        current_files = set(os.listdir(SCAN_DIR))

        new_files = current_files - known_files
        if new_files:
            for new_file in new_files:
                logger.info(f"Found new file: {new_file}")
                channel.basic_publish(
                    exchange="",
                    routing_key="ocr_queue",
                    body=new_file,
                    properties=pika.BasicProperties(delivery_mode=2)
                )

        known_files = current_files

    except Exception as e:
        logg…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@maxi07
Comment options

@lukebakken
Comment options

Answer selected by michaelklishin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants