How to make multiple PushAdapters tick simultaneously in one graph? #593
Unanswered
mizuse-emiya
asked this question in
Q&A
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 |
12 replies
|
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 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
All reactions