gortiz commented on code in PR #11205: URL: https://github.com/apache/pinot/pull/11205#discussion_r1281497007
########## pinot-query-runtime/src/main/java/org/apache/pinot/query/runtime/executor/OpChainSchedulerService.java: ########## @@ -31,151 +33,84 @@ import org.slf4j.LoggerFactory; -/** - * This class provides the implementation for scheduling multistage queries on a single node based - * on the {@link OpChainScheduler} logic that is passed in. Multistage queries support partial execution - * and will return a NOOP metadata block as a "yield" signal, indicating that the next operator - * chain ({@link OpChainScheduler#next} will be requested. - */ -@SuppressWarnings("UnstableApiUsage") -public class OpChainSchedulerService extends AbstractExecutionThreadService { +public class OpChainSchedulerService implements SchedulerService { private static final Logger LOGGER = LoggerFactory.getLogger(OpChainSchedulerService.class); - /** - * Default time scheduler is allowed to wait for a runnable OpChain to be available. - */ - private static final long DEFAULT_SCHEDULER_NEXT_WAIT_MS = 100; - /** - * Default cancel signal retention, this should be set to several times larger than - * {@link org.apache.pinot.query.service.QueryConfig#DEFAULT_SCHEDULER_RELEASE_TIMEOUT_MS}. - */ - private static final long SCHEDULER_CANCELLATION_SIGNAL_RETENTION_MS = 60_000L; - - private final OpChainScheduler _scheduler; - private final ExecutorService _workerPool; - private final Cache<Long, Long> _cancelledRequests = CacheBuilder.newBuilder() - .expireAfterWrite(SCHEDULER_CANCELLATION_SIGNAL_RETENTION_MS, TimeUnit.MILLISECONDS).build(); - public OpChainSchedulerService(OpChainScheduler scheduler, ExecutorService workerPool) { - _scheduler = scheduler; - _workerPool = workerPool; - } + private final ExecutorService _executorService; + private final ConcurrentHashMap<OpChainId, Future<?>> _submittedOpChainMap; - @Override - protected void triggerShutdown() { - // TODO: Figure out shutdown lifecycle with graceful shutdown in mind. - LOGGER.info("Triggered shutdown on OpChainScheduler..."); + public OpChainSchedulerService(ExecutorService executorService) { + _executorService = executorService; + _submittedOpChainMap = new ConcurrentHashMap<>(); } @Override - protected void run() - throws Exception { - while (isRunning()) { - OpChain operatorChain = _scheduler.next(DEFAULT_SCHEDULER_NEXT_WAIT_MS, TimeUnit.MILLISECONDS); - if (operatorChain == null) { - continue; - } - LOGGER.trace("({}): Scheduling", operatorChain); - _workerPool.submit(new TraceRunnable() { + public void register(OpChain operatorChain) { + Future<?> scheduledFuture = _executorService.submit(new TraceRunnable() { Review Comment: Should be better in d34f90152b5cca9f83ff71225109dc852e502f50 -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org