How to make multiple PushAdapters tick simultaneously in one graph? #593
Replies: 2 comments 12 replies
-
|
Considering all the sources are real-time and distinct, your best bet would be to just synchronize the 3 sources within the graph using https://github.com/Point72/csp/wiki/Basket-Nodes-API#sync. There's no easy way to say "these 3 push adapters should always be on the same cycle" - each will call |
Beta Was this translation helpful? Give feedback.
-
|
Agreed with Adam. In the slight chance that all 3 of these push adapters are actually driven by the same backend, then you can also create a single AdapterManager to service them all, and have it use PushGroups ( concept is explained here but doesnt look like there is currently a doc explaining how to use it in a push adapter manager yet |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In our setup, a graph usually has three real-time data sources. We use three PushAdapters, and each data source publishes data once every 10 minutes.
The issue we see is that the graph downstream does not receive all three updates at the same time. Instead, each PushAdapter seems to tick the entire graph separately.
Question:
Is there a way to implement the graph or adapters so that multiple PushAdapters can tick simultaneously?
Beta Was this translation helpful? Give feedback.
All reactions