[help wanted] how to handle Pipelined status in volcano
I check the code and cannot found the logic process pipelined status, how can the pod(task) status updated from pipelined to allocated or binding? Maybe the pod updated by event handler and transfer from pipelined to pending?
pipelined is used to wait releasing resources; the status will be updated in next scheduling cycle if the resource is free :)
pipelined is used to wait releasing resources; the status will be updated in next scheduling cycle if the resource is free :)
i can get that point but cannot found the code that handle the pipelined status... which action or event will process pipelined?
thx for your reply!
pipelined is used to wait releasing resources; the status will be updated in next scheduling cycle if the resource is free :)
i can get that point but cannot found the code that handle the pipelined status... which action or event will process pipelined?
thx for your reply!
Here is the code where task update to status Pipelined:
...
if err := job.UpdateTaskStatus(task, api.Pipelined); err != nil {...}
...
i can get that point but cannot found the code that handle the pipelined status... which action or event will process pipelined?
same confused by that
Hello 👋 Looks like there was no activity on this issue for last 90 days. Do you mind updating us on the status? Is this still reproducible or needed? If yes, just comment on this PR or push a commit. Thanks! 🤗 If there will be no activity for 60 days, this issue will be closed (we can always reopen an issue if we need!).
Closing for now as there was no activity for last 60 days after marked as stale, let us know if you need this to be reopened! 🤗
pipelined is used to wait releasing resources; the status will be updated in next scheduling cycle if the resource is free :)
i can get that point but cannot found the code that handle the pipelined status... which action or event will process pipelined?
thx for your reply!
Totally agree with you. I also can't find the codes which are related to pipelined tasks got transmit to other status(.e.g allocated or binding)
Can someone point out the code location?
Sincerely thanks
+1
+1
Pipelined的资源会预留到下一个session使用,相当于这轮把它先空出来(占着)
Same confused,I could not find the code that change Pipelined to Allocated.