-
Notifications
You must be signed in to change notification settings - Fork 2.3k
My workflow is running and the task is SCHEDULED but it is not being processed #3136
Comments
Hello @lianjunwei how is your worker configed to poll tasks: https://github.com/Netflix/conductor/blob/main/client/src/main/java/com/netflix/conductor/client/automator/TaskRunnerConfigurer.java#L174? Seemed to me that it is just polling from that specific instance? You might want to check your server setup to make sure all instances are discoverable. BTW, you are using noop lock |
1.I have changed the distributed lock to redis. 3.According to your guess, if my conductor server deploys 10 instances, it will take 10 rounds of training to get the task, which is obviously unreasonable. |
@lianjunwei happy to help. Maybe we can jump on a call and debug this further. |
seems the same issue as #3089 |
@lianjunwei I am looking for your setting for https://github.com/Netflix/conductor/blob/main/client/src/main/java/com/netflix/conductor/client/automator/TaskRunnerConfigurer.java#L174?
What queue solution are you using? If it's in-memory one, then it won't be shared among instances. Conductor simply just poll messages from your queue solutions. |
|
Looks like it's postgres, but I'm not sure, how to set up my queue which is which. I am using postgres as persistent storage. |
@lianjunwei based on the screenshot in your initial question, |
This issue is stale, because it has been open for 45 days with no activity. Remove the stale label or comment, or this will be closed in 7 days. |
This issue was closed, because it has been stalled for 7 days with no activity. |
一.description.
conductor.db.type=postgres
spring.datasource.url=jdbc:postgresql://127.0.0.1:8002/conductor
spring.datasource.username=test
spring.datasource.password=test123
spring.datasource.hikari.maximum-pool-size=10
spring.datasource.hikari.minimum-idle=2
Conductor server: application.properties is as follows:
conductor.app.workflowExecutionLockEnabled=true
conductor.workflow-execution-lock.type=noop_lock
conductor.redis-lock.serverType=single
conductor.redis-lock.serverAddress=redis://127.0.0.1:6379
conductor.redis-lock.namespace=conductor
3.If I trigger the workflow in "10.190.32.157:8080", everything is normal.However, when the workflow is triggered in "10.190.32.158:8080", it is not executed.
4.The tasks of workflow are as follows:
5.it is not being processed
6.It has been ensured that the "last polling time" of this task is the current time.
二.expect
If I trigger the workflow in "10.190.32.158:8080", the task is executed.
三.Supplementary notes:
Screenshot from: https://conductor.netflix.com/faq.html
I don't understand the passage in the red circle. Is the bug related to this?Hope to get help.
The text was updated successfully, but these errors were encountered: