Reputation
Badges 1
9 × Eureka!Hi @<1523701070390366208:profile|CostlyOstrich36> @<1523701087100473344:profile|SuccessfulKoala55> I had given a wrong queue. Everything works now. Sorry for the confusion. Have a nice day!
I restarted the agent and it picks the task and hangs at that log message i posted in the chat
Is it something with git commits?
Hi @<1523701070390366208:profile|CostlyOstrich36> , I am running the agent to listen to both queues: services and default queue
clearml-agent daemon --queue default services
Also, I set pipe.set_default_execution_queue("default")
in order to run pipeline steps in default queue and calling pipe.start()
to run the controller in services queue.
By default, the queue is set to "services" in the start() method
i found the issue. I need to pass the queue name to pipe.start() as
pipe.start(queue="default")
I thought setting the default execution already takes care of this.