toyboxman commented on code in PR #646: URL: https://github.com/apache/griffin/pull/646#discussion_r1559330157
########## griffin-core/src/main/java/org/apache/griffin/core/worker/schedule/TaskDispatcherScheduler.java: ########## @@ -0,0 +1,291 @@ +package org.apache.griffin.core.worker.schedule; + +import com.google.common.collect.Lists; +import com.google.common.collect.Queues; +import org.apache.commons.collections4.CollectionUtils; +import org.apache.griffin.core.worker.context.WorkerContext; +import org.apache.griffin.core.worker.entity.bo.DQInstance; +import org.apache.griffin.core.worker.entity.bo.task.DQBaseTask; +import org.apache.griffin.core.worker.entity.enums.DQInstanceStatus; +import org.apache.griffin.core.worker.entity.enums.DQTaskStatus; +import org.apache.griffin.core.worker.service.DQInstanceService; +import org.apache.griffin.core.worker.service.DQTaskService; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Scheduled; +import org.springframework.stereotype.Component; + +import javax.annotation.PostConstruct; +import java.util.List; +import java.util.Queue; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.TimeUnit; + +/** + * 任务执行调度期 和 dispatcher交互 Review Comment: there're some comments using Chinese, we should translate them and align same style with other parts -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
