This is an automated email from the ASF dual-hosted git repository.

huajianlan pushed a change to branch fe_local_shuffle
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard d43fad88394 [refactor](local shuffle) Plan local exchanger in FE (BE 
part)
     new 220e7e7e010 [refactor](local shuffle) Plan local exchanger in FE (BE 
part)
     new 27eb5f638dc [refactor](local shuffle) Plan local exchanger in FE (FE 
part)
     new 16eeb06d0b9 [refactor](local shuffle) align FE local exchange planning 
with BE pipeline model
     new d084005a7f1 [refactor](local shuffle) align AggregationNode with BE 
three-operator-class model

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d43fad88394)
            \
             N -- N -- N   refs/heads/fe_local_shuffle (d084005a7f1)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 .../local_exchange_sink_operator.cpp               |  25 +
 .../local_exchange/local_exchange_sink_operator.h  |   6 +
 .../local_exchange_source_operator.h               |   5 +-
 be/src/pipeline/pipeline_fragment_context.cpp      | 106 ++-
 be/src/pipeline/pipeline_fragment_context.h        |  19 +
 .../doris/datasource/tvf/source/TVFScanNode.java   |  11 +
 .../org/apache/doris/nereids/NereidsPlanner.java   |  23 +-
 .../glue/translator/PhysicalPlanTranslator.java    |  71 +-
 .../glue/translator/PlanTranslatorContext.java     |  10 +
 .../apache/doris/nereids/trees/plans/PlanType.java |   1 +
 .../org/apache/doris/planner/AddLocalExchange.java | 126 ++++
 .../org/apache/doris/planner/AggregationNode.java  |  95 +++
 .../org/apache/doris/planner/AnalyticEvalNode.java |  53 ++
 .../apache/doris/planner/AssertNumRowsNode.java    |  16 +
 .../java/org/apache/doris/planner/CTEScanNode.java |  10 +
 .../java/org/apache/doris/planner/DataSink.java    |   5 +
 .../org/apache/doris/planner/DataStreamSink.java   |   6 +
 .../org/apache/doris/planner/EmptySetNode.java     |  10 +
 .../org/apache/doris/planner/ExchangeNode.java     |  22 +
 .../org/apache/doris/planner/HashJoinNode.java     |  99 +++
 .../apache/doris/planner/LocalExchangeNode.java    | 288 ++++++++
 .../apache/doris/planner/MaterializationNode.java  |  14 +
 .../apache/doris/planner/NestedLoopJoinNode.java   |  75 +++
 .../org/apache/doris/planner/OlapScanNode.java     |  12 +
 .../apache/doris/planner/PartitionSortNode.java    |  27 +
 .../java/org/apache/doris/planner/PlanNode.java    | 113 +++-
 .../org/apache/doris/planner/RecursiveCteNode.java |  24 +
 .../apache/doris/planner/RecursiveCteScanNode.java |  10 +
 .../java/org/apache/doris/planner/RepeatNode.java  |  14 +
 .../java/org/apache/doris/planner/ScanNode.java    |  14 +
 .../java/org/apache/doris/planner/SelectNode.java  |  14 +
 .../org/apache/doris/planner/SetOperationNode.java |  82 +++
 .../java/org/apache/doris/planner/SortNode.java    |  55 ++
 .../apache/doris/planner/TableFunctionNode.java    |  13 +
 .../java/org/apache/doris/qe/SessionVariable.java  |  18 +
 .../doris/qe/runtime/ThriftPlansBuilder.java       |  87 ++-
 .../planner/LocalShuffleNodeCoverageTest.java      | 630 +++++++++++++++++
 .../apache/doris/qe/LocalExchangePlannerTest.java  | 361 ++++++++++
 gensrc/thrift/Partitions.thrift                    |   1 -
 .../plugins/plugin_profile_plan_tree.groovy        | 274 ++++++++
 .../test_local_shuffle_fe_be_consistency.groovy    | 742 +++++++++++++++++++++
 41 files changed, 3533 insertions(+), 54 deletions(-)
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/planner/AddLocalExchange.java
 create mode 100644 
fe/fe-core/src/main/java/org/apache/doris/planner/LocalExchangeNode.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/planner/LocalShuffleNodeCoverageTest.java
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/qe/LocalExchangePlannerTest.java
 create mode 100644 regression-test/plugins/plugin_profile_plan_tree.groovy
 create mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_fe_be_consistency.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to