Skip to main content

Connect and link one or more Queues together or to files

Project description

CI PyPI Python versions Documentation

Route messages between any combination of Python queues — fan-out, fan-in, or many-to-many — without the boilerplate.

Why?

Connecting queue.Queue, multiprocessing.Queue, and multiprocessing.Manager().Queue by hand means writing your own publisher loops, handling thread-vs-process selection, and dealing with edge cases like pipe size limits and clean shutdown. QueueLink handles all of that:

  • Automatic thread/process selection — detects whether your queues are thread-based or process-based and creates the right kind of link.

  • Fan-out and fan-in — one source to many destinations, many sources to one destination, or any combination.

  • Handle adapters — bridge subprocess pipes, file handles, and multiprocessing connections directly into your queue graph.

  • Large-message spill-to-disk — transparently buffers oversized objects to disk to avoid pipe size limits.

  • Tested across fork, forkserver, and spawn — CI runs a 25-job matrix across Linux, macOS, and Python 3.9–3.13.

Install

pip install queuelink

Use

With standard queues

from queue import Queue
from queuelink import QueueLink

# Source and destination queues
source_q = Queue()
dest_q = Queue()

# Create the QueueLink
queue_link = QueueLink(name="my link")

# Connect queues to the QueueLink
source_id = queue_link.read(q=source_q)
dest_id = queue_link.write(q=dest_q)

# Text to send
text_in = "a😂" * 10

# Add text to the source queue
source_q.put(text_in)

# Retrieve the text from the destination queue!
text_out = dest_q.get()
print(text_out)

With a process manager

from multiprocessing import Manager
from queuelink import QueueLink

# Create the multiprocessing.Manager
manager = Manager()

# Source and destination queues
source_q = manager.JoinableQueue()
dest_q = manager.JoinableQueue()

# Create the QueueLink
queue_link = QueueLink(name="my link")

# Connect queues to the QueueLink
source_id = queue_link.read(q=source_q)
dest_id = queue_link.write(q=dest_q)

# Text to send
text_in = "a😂" * 10

# Add text to the source queue
source_q.put(text_in)

# Retrieve the text from the destination queue!
text_out = dest_q.get()
print(text_out)

Methods

Primary methods

These methods are used most common use cases.

  • register_queue(q: UNION_SUPPORTED_QUEUES, direction: DIRECTION, start_method: str=None) -> client id: str

  • stop

Secondary methods

These methods are less common.

  • destructive_audit(direction: str)

  • get_metrics() -> dict — returns latency and message-count data; see Metrics for details.

  • get_queue(queue_id: [str, int])

  • is_alive

  • is_drained

  • is_empty(queue_id:str =None)

  • unregister_queue(queue_id: str, direction: str, start_method: str=None)

Queue Compatibility

QueueLink is tested against multiple native Queue implementations. When a source or destination queue is thread-based, the link will be created as a Thread instance. When all involved queues are process-based, the link will also be a Process instance.

Note that in thread-based situations throughput might be limited by the Python GIL.

Two thread-based queues in different processes cannot be bridged directly. They would require an intermediate multiprocessing queue that can be accessed across processes.

Tested against the following queue implementations:

  • SyncManager.Queue (multiprocessing.Manager)

  • SyncManager.JoinableQueue (multiprocessing.Manager)

  • multiprocessing.Queue

  • multiprocessing.JoinableQueue

  • multiprocessing.SimpleQueue

  • queue.Queue

  • queue.LifoQueue

  • queue.PriorityQueue

  • queue.SimpleQueue

Implementation

QueueLink creates a new thread or process for each source queue, regardless of the number of downstream queues. The linking thread/process gets each element of the source queue and iterates over and puts to the set of destination queues.

Multiprocessing

Start Method: QueueLink is tested against fork, forkserver, and spawn start methods. It defaults to the system preference, but can be overridden by passing the preferred start method name to the class “start_method” parameter.

Linking with other channels

QueueLink includes two “adapters” to link queues with inbound and outbound connections.

Inbound Connections

To quickly link a pipe or handle with a queue, use QueueHandleAdapterReader. The Reader Adapter is tested against Multiprocessing Connections and Subprocess pipes. It calls flush and readline to consume from handles, so it should work against any object implementing those methods, with readline returning a string or byte array. For Multiprocessing Connections, the adapter injects a no-op flush method and a custom readline method.

# Text to send
text_in = "a😂" * 10

# Destination queue
dest_q = multiprocessing.Queue()  # Process-based

# Subprocess, simple example sending some text to stdout
# from subprocess import Popen, PIPE
proc = Popen(['echo', '-n', text_in],  # -n prevents echo from adding a newline character
             stdout=PIPE,
             universal_newlines=True,
             close_fds=True)

# Connect the reader
# from queuelink import QueueHandleAdapterReader
read_adapter = QueueHandleAdapterReader(queue=dest_q,
                                        handle=proc.stdout)

# Get the text from the queue
text_out = dest_q.get()
print(text_out)

Other Notes

Under heavily loaded conditions the “publisher” process/thread can thrash when trying to retrieve records from the source queue. Tuning link_timeout higher (default 0.1 seconds) can improve responsiveness. Higher values might be less responsive to stop requests and throw warnings during shutdown.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

queuelink-2.2.3.tar.gz (80.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

queuelink-2.2.3-py3-none-any.whl (45.8 kB view details)

Uploaded Python 3

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page