Replies: 1 comment
-
duplicated #274 |
Beta Was this translation helpful? Give feedback.
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.
-
If I have a producer Factory whose result depends on param
label
,I may use the data from ProducerFactory in another Factory by
I can override
deliveryId
in ProducerFactory according to the paramlabel
, e.g.override def deliveryId = s"delivery_id_$label"
for sure.deliveryId
:"delivery_id_a", "delivery_id_b"
, how can I using ConsumerFactory to consume data from these Producers? As I cannot set deliveryId in annotation according to the paramlabel
deliveryId
; but how to clean the pipeline if there are some cached/persisted data.Beta Was this translation helpful? Give feedback.
All reactions