Gabriel39 commented on code in PR #45614:
URL: https://github.com/apache/doris/pull/45614#discussion_r1891630388


##########
be/src/pipeline/pipeline_task.h:
##########
@@ -187,15 +166,26 @@ class PipelineTask {
      */
     static bool should_revoke_memory(RuntimeState* state, int64_t 
revocable_mem_bytes);
 
-    void put_in_runnable_queue() {
+    bool put_in_runnable_queue(bool eager) {
+        bool expected = false;
+        if (!_in_eager_queue.compare_exchange_strong(expected, eager)) {

Review Comment:
   没有两个线程同时running的逻辑已经有了,现在主要是想让被cancel的task不要再被放入runnable 队列了



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to