This is an automated email from the ASF dual-hosted git repository.
zhuzh pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from ba95b2eb6f0 [FLINK-38981][table] Migrate
BatchPhysicalSortMergeJoinRule to java
new 01a84892675 [hotfix][runtime] Fix statusListeners NPE after
application deserialization
new 6133aecd7a5 [hotfix][runtime] Associate job with application after
successful JobManagerRunner creation
new dfd785c2b3a [FLINK-38974][runtime] Handle jobs in running applications
during HA recovery
The 3 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:
docs/static/generated/rest_v1_dispatcher.yml | 8 +
.../application/PackagedProgramApplication.java | 22 +-
.../application/executors/EmbeddedExecutor.java | 73 ++-
.../executors/EmbeddedExecutorFactory.java | 29 +-
.../executors/EmbeddedExecutorServiceLoader.java | 32 +-
.../PackagedProgramApplicationITCase.java | 33 +-
.../PackagedProgramApplicationTest.java | 107 +++++
.../webmonitor/history/HistoryServerTest.java | 4 +-
.../runtime/application/AbstractApplication.java | 17 +-
.../runtime/dispatcher/ApplicationBootstrap.java | 2 +-
.../flink/runtime/dispatcher/Dispatcher.java | 339 ++++++++++----
.../runtime/dispatcher/DispatcherGateway.java | 9 +
.../cleanup/CheckpointResourcesCleanupRunner.java | 8 +-
.../executiongraph/ArchivedExecutionGraph.java | 42 +-
.../apache/flink/runtime/jobmaster/JobResult.java | 63 ++-
.../flink/runtime/minicluster/MiniCluster.java | 6 +-
.../runtime/rest/messages/job/JobDetailsInfo.java | 5 +-
.../rest/messages/json/JobResultDeserializer.java | 22 +
.../rest/messages/json/JobResultSerializer.java | 16 +
.../dispatcher/DispatcherCleanupITCase.java | 11 +-
.../dispatcher/DispatcherResourceCleanupTest.java | 82 ++--
.../flink/runtime/dispatcher/DispatcherTest.java | 499 +++++++++++++++------
.../runtime/dispatcher/TestingApplication.java | 146 ++++++
.../runner/DefaultDispatcherRunnerITCase.java | 6 +-
.../ZooKeeperDefaultDispatcherRunnerTest.java | 5 +-
.../runtime/testutils/TestingJobResultStore.java | 2 +
.../webmonitor/TestingDispatcherGateway.java | 19 +
27 files changed, 1268 insertions(+), 339 deletions(-)
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/dispatcher/TestingApplication.java