GGraziadei opened a new pull request, #8892:
URL: https://github.com/apache/storm/pull/8892

   ## What is the purpose of the change
   
   Fixes #8816 
   
   A Storm executor multiplexes two fundamentally different kinds of traffic 
onto its single inbound JCQueue:
   - Data plane: the actual business tuples flowing between components. High 
volume, bursty, and the
   traffic that backpressure is meant to throttle.
   - Control plane: low-volume, coordination tuples that keep the topology 
healthy and responsive.
   
   This PR introduces an optional control receive queue. When enabled, this 
dedicated queue is prioritized and completely drained before the standard data 
queue is processed. This ensures that critical coordination traffic bypasses 
data plane bottlenecks.
   For additional context and technical details, please refer to the discussion 
inside the issue thread.
   
   ## How was the change tested
   - Unit tests
   - Benchmarcks (a report will be available in the discussion asap)
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to