This is an automated email from the ASF dual-hosted git repository. nju_yaho pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/kylin.git.
from a602afd KYLIN-3358 make the config kylin.query.enable-dynamic-column effective at project level new eddab37 KYLIN-3421 improve the fetcher runner in job scheduler new c5fd42a KYLIN-3421 fix IT The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../job/impl/threadpool/DefaultFetcherRunner.java | 104 ++++++++++ .../job/impl/threadpool/DefaultScheduler.java | 210 ++------------------- .../job/impl/threadpool/DistributedScheduler.java | 116 ++++-------- .../kylin/job/impl/threadpool/FetcherRunner.java | 77 ++++++++ .../kylin/job/impl/threadpool/JobExecutor.java} | 18 +- .../job/impl/threadpool/PriorityFetcherRunner.java | 146 ++++++++++++++ .../job/impl/threadpool/BaseSchedulerTest.java | 2 +- .../kylin/job/BaseTestDistributedScheduler.java | 5 +- .../apache/kylin/job/ContextTestExecutable.java | 44 ----- .../kylin/job/ITDistributedSchedulerBaseTest.java | 43 +---- .../job/ITDistributedSchedulerTakeOverTest.java | 7 +- 11 files changed, 390 insertions(+), 382 deletions(-) create mode 100644 core-job/src/main/java/org/apache/kylin/job/impl/threadpool/DefaultFetcherRunner.java create mode 100644 core-job/src/main/java/org/apache/kylin/job/impl/threadpool/FetcherRunner.java copy core-job/src/{test/java/org/apache/kylin/job/BaseTestExecutable.java => main/java/org/apache/kylin/job/impl/threadpool/JobExecutor.java} (83%) create mode 100644 core-job/src/main/java/org/apache/kylin/job/impl/threadpool/PriorityFetcherRunner.java delete mode 100644 kylin-it/src/test/java/org/apache/kylin/job/ContextTestExecutable.java