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 37c70c482a0 [FLINK-37024][task] Make cancel watchdog cover tasks stuck in DEPLOYING state (#25915) new 5d0cb98fe78 [FLINK-36608][runtime] Expand the adaptive graph component to support adaptive broadcast join capability. new 627395acf46 [FLINK-36608][table-runtime] Add shouldReorderInputs method to AdaptiveJoin. new 80a79bb5f63 [FLINK-36608][table-runtime] Add AdaptiveBroadcastJoinOptimizationStrategy to support adaptive broadcast join. 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: .../generated/optimizer_config_configuration.html | 2 +- .../DefaultAdaptiveExecutionHandler.java | 9 +- .../StreamGraphOptimizationStrategy.java | 8 + .../adaptivebatch/StreamGraphOptimizer.java | 4 + .../streaming/api/graph/AdaptiveGraphManager.java | 10 + .../api/graph/DefaultStreamGraphContext.java | 105 +++++++--- .../flink/streaming/api/graph/StreamEdge.java | 6 +- .../streaming/api/graph/StreamGraphContext.java | 27 +++ .../api/graph/util/ImmutableStreamGraph.java | 13 +- .../api/graph/util/ImmutableStreamNode.java | 16 ++ .../graph/util/StreamEdgeUpdateRequestInfo.java | 17 +- .../graph/util/StreamNodeUpdateRequestInfo.java | 31 +-- .../DefaultAdaptiveExecutionHandlerTest.java | 2 +- .../adaptivebatch/StreamGraphOptimizerTest.java | 19 ++ .../api/graph/DefaultStreamGraphContextTest.java | 13 +- .../api/graph/util/ImmutableStreamGraphTest.java | 4 +- .../table/api/config/OptimizerConfigOptions.java | 2 +- .../adaptive/AdaptiveJoinOperatorGenerator.java | 11 ++ .../table/planner/delegation/BatchPlanner.scala | 18 ++ .../sql/adaptive/AdaptiveBroadcastJoinITCase.scala | 189 ++++++++++++++++++ .../runtime/batch/sql/join/JoinITCase.scala | 4 + .../flink/table/planner/utils/TableTestBase.scala | 6 +- .../operators/join/adaptive/AdaptiveJoin.java | 8 + .../join/adaptive/AdaptiveJoinOperatorFactory.java | 6 + .../AdaptiveBroadcastJoinOptimizationStrategy.java | 212 +++++++++++++++++++++ ...seAdaptiveJoinOperatorOptimizationStrategy.java | 71 +++++++ .../strategy/PostProcessAdaptiveJoinStrategy.java | 117 ++++++++++++ .../scheduling/AdaptiveBatchSchedulerITCase.java | 4 +- 28 files changed, 881 insertions(+), 53 deletions(-) copy flink-core/src/main/java/org/apache/flink/api/common/typeutils/base/TypeSerializerSingleton.java => flink-runtime/src/main/java/org/apache/flink/streaming/api/graph/util/StreamNodeUpdateRequestInfo.java (55%) create mode 100644 flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/runtime/batch/sql/adaptive/AdaptiveBroadcastJoinITCase.scala create mode 100644 flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/strategy/AdaptiveBroadcastJoinOptimizationStrategy.java create mode 100644 flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/strategy/BaseAdaptiveJoinOperatorOptimizationStrategy.java create mode 100644 flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/strategy/PostProcessAdaptiveJoinStrategy.java