You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding the flow timeout logic, it may take over 5 minutes to execute when paired with a very slow plugin, causing a critical blockage for real-time monitoring. Therefore, while addressing the primary issue of the plugin not being executed on a separate thread, it is also essential to optimize the overall data structure. Currently, the flow uses HashMap and Vector, which need to be replaced with more suitable alternatives.
fix the plugin code to be executed in a separated thread
improve data structure of the flow part
The text was updated successfully, but these errors were encountered:
Regarding the flow timeout logic, it may take over 5 minutes to execute when paired with a very slow plugin, causing a critical blockage for real-time monitoring. Therefore, while addressing the primary issue of the plugin not being executed on a separate thread, it is also essential to optimize the overall data structure. Currently, the flow uses
HashMap
andVector
, which need to be replaced with more suitable alternatives.The text was updated successfully, but these errors were encountered: