3.x+: A newbie talk something about queue, task status. #3251
Replies: 1 comment
-
@NItaMII The event queues as per status are provided by the SQS implementation by default - https://github.com/Netflix/conductor/blob/main/awssqs-event-queue/src/main/java/com/netflix/conductor/sqs/config/SQSEventQueueConfiguration.java#L37 This configuration provides event queues and listeners per status. You can follow the same pattern and use the bean you provided as an example to generate a ConductorEventQueue within your implementation. |
Beta Was this translation helpful? Give feedback.
-
My situation: the workflow instance need to go continue when some signals introduced. For example, I add a Wait Task before a Simple Task (some business logical), then this flow will be stop there until someone trigger a signal.
I try the api, but get ERROR such like 'There is no Completed Queue'. Then I find so many issues (someone like me, is new to Conductor), asking topics about 'How to create event queue' or 'why update task throw an error'.
So, for these newbies(including me), maybe they just want to using ConductorEventQueue rather than 'sqs', 'amqp'. Just as simple as possible, but I can't find docs about ConductorEventQueue.
Beta Was this translation helpful? Give feedback.
All reactions