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 335c4049ed6 [FLINK-28169][e2e-test/glue,kinesis] Re-enabled
integration test that was failing due a shaded dependency test-jar requiring a
transitive shaded test-jar being satisfied by a later unshaded dependency
test-jar, changed so that unshaded dependency test-jar is loaded earlier in pom
new b96d476d4cd [FLINK-28134][runtime] Introduce
SpeculativeExecutionJobVertex and SpeculativeExecutionVertex
new e73225e4071 [FLINK-28134][runtime] Rework
TaskDeploymentDescriptorFactory to accept an execution to deploy
new 67aeb8165c6 [FLINK-28134][runtime] Wait for all the executions to be
terminated before finishing a job
new 2aae4974835 [FLINK-28271][runtime] Add config options for speculative
scheduler
The 4 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:
.../generated/all_jobmanager_section.html | 18 ++
.../generated/expert_scheduling_section.html | 18 ++
.../generated/job_manager_configuration.html | 18 ++
.../flink/configuration/JobManagerOptions.java | 34 +++
.../TaskDeploymentDescriptorFactory.java | 10 +-
.../ArchivedSpeculativeExecutionVertex.java | 52 ++++
.../executiongraph/DefaultExecutionGraph.java | 65 +++--
.../DefaultExecutionGraphBuilder.java | 6 +-
.../flink/runtime/executiongraph/Execution.java | 4 +-
.../runtime/executiongraph/ExecutionJobVertex.java | 31 ++-
.../runtime/executiongraph/ExecutionVertex.java | 139 +++++-----
.../SpeculativeExecutionJobVertex.java | 67 +++++
.../executiongraph/SpeculativeExecutionVertex.java | 285 +++++++++++++++++++++
.../scheduler/DefaultExecutionGraphFactory.java | 14 +-
.../AdaptiveBatchSchedulerFactory.java | 4 +-
.../adaptivebatch/BlockingResultInfo.java | 3 +-
.../TaskDeploymentDescriptorFactoryTest.java | 2 +-
.../SpeculativeExecutionVertexTest.java | 252 ++++++++++++++++++
.../TestingDefaultExecutionGraphBuilder.java | 10 +-
.../scheduler/DefaultExecutionDeployerTest.java | 13 +-
.../TestingInternalFailuresListener.java} | 41 +--
.../AdaptiveBatchSchedulerTestUtils.java | 4 +-
22 files changed, 957 insertions(+), 133 deletions(-)
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/ArchivedSpeculativeExecutionVertex.java
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/SpeculativeExecutionJobVertex.java
create mode 100644
flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/SpeculativeExecutionVertex.java
create mode 100644
flink-runtime/src/test/java/org/apache/flink/runtime/executiongraph/SpeculativeExecutionVertexTest.java
copy
flink-runtime/src/{main/java/org/apache/flink/runtime/scheduler/ExecutionSlotAllocator.java
=>
test/java/org/apache/flink/runtime/scheduler/TestingInternalFailuresListener.java}
(55%)