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

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


 discard 111160e19d [feature](runtime_filter) MultiCastSender supporting 
runtime filter on be (#21304)
     add 8c532e8808 [fix](restore) work around, ingest binlog after 
backup/restore which local_tablet.partition_id is not correct, use 
req.partition_id (#21288)
     add 419f51ca2c [feature](nereids)set nereids cbo weights by session var 
#21293
     add 41ccf77c7d [feature][fix](fs)(s3)add fs_s3 benchmark tool and fix s3 
file writer bug (#20926)
     add d00326549f [Fix](inverted index) fix a bundle of inverted index 
exception process errors (#21328)
     add 5bb79be932 [opt](Nereids) forbid gather agg and gather set operation 
(#21332)
     add f3fc606312 [minor](Nereids) change Nereids parse failed log level to 
debug (#21335)
     add cfbf48e61b [improvement](regression) add custom_env.sh from regression 
pipeline (#21250)
     add 6259a91d12 [opt](profile) add whether use Nereids info in Profile 
(#21342)
     add c7286c620b [fix](unique key) agg_function is NONE when properties is 
null (#21337)
     add 2643f3a167 [fix](merge-on-write) fix dead lock when publish (#21339)
     new c6b3ac6905 [feature](runtime_filter) MultiCastSender supporting 
runtime filter on be (#21304)
     new 95f0208ad5 [opt](Nereids) support set cte shuffle type for each 
consumer

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   (111160e19d)
            \
             N -- N -- N   refs/heads/runtimefilter_multi_send (95f0208ad5)

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 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:
 .gitignore                                         |   5 +-
 be/src/io/fs/benchmark/base_benchmark.h            | 117 ++++++++++++-
 be/src/io/fs/benchmark/benchmark_factory.hpp       |  14 +-
 be/src/io/fs/benchmark/fs_benchmark_tool.cpp       |  11 ++
 be/src/io/fs/benchmark/hdfs_benchmark.hpp          | 166 ++++--------------
 be/src/io/fs/benchmark/s3_benchmark.hpp            | 192 ++++++++++++++++++---
 be/src/io/fs/s3_file_write_bufferpool.cpp          |  22 +--
 be/src/io/fs/s3_file_write_bufferpool.h            |  14 +-
 .../inverted_index_compound_directory.cpp          |   4 +-
 .../rowset/segment_v2/inverted_index_writer.cpp    |   4 +-
 be/src/olap/task/engine_publish_version_task.cpp   |  37 +---
 be/src/olap/task/engine_publish_version_task.h     |   7 -
 be/src/service/backend_service.cpp                 |  11 +-
 be/src/service/doris_main.cpp                      |   7 +
 .../org/apache/doris/analysis/CreateTableStmt.java |   2 +-
 .../doris/common/profile/SummaryProfile.java       |  16 +-
 .../org/apache/doris/nereids/cost/CostWeight.java  |   8 +-
 .../glue/translator/PhysicalPlanTranslator.java    | 133 +++++++-------
 .../properties/ChildOutputPropertyDeriver.java     |   2 +-
 .../properties/ChildrenPropertiesRegulator.java    |  35 ++++
 ...ecAny.java => DistributionSpecMustShuffle.java} |   8 +-
 .../nereids/properties/PhysicalProperties.java     |   3 +
 .../nereids/properties/RequestPropertyDeriver.java |   5 +-
 .../rules/implementation/AggregateStrategies.java  |   9 +-
 .../org/apache/doris/planner/DataStreamSink.java   |  72 +++++++-
 .../org/apache/doris/planner/ExchangeNode.java     |  10 +-
 .../org/apache/doris/planner/PlanFragment.java     |   2 +-
 .../java/org/apache/doris/planner/PlanNode.java    |   4 +-
 .../java/org/apache/doris/qe/ConnectProcessor.java |   2 +-
 .../java/org/apache/doris/qe/SessionVariable.java  |  39 +++++
 .../java/org/apache/doris/qe/StmtExecutor.java     |   2 +
 .../apache/doris/analysis/CreateTableStmtTest.java |  21 +++
 .../nereids_tpcds_shape_sf100_p0/shape/query14.out |  54 +++---
 .../nereids_tpcds_shape_sf100_p0/shape/query33.out | 176 +++++++++----------
 .../nereids_tpcds_shape_sf100_p0/shape/query49.out | 138 ++++++++-------
 .../nereids_tpcds_shape_sf100_p0/shape/query54.out |  26 +--
 .../nereids_tpcds_shape_sf100_p0/shape/query56.out | 148 ++++++++--------
 .../nereids_tpcds_shape_sf100_p0/shape/query6.out  |  13 +-
 .../nereids_tpcds_shape_sf100_p0/shape/query60.out | 156 ++++++++---------
 .../nereids_tpcds_shape_sf100_p0/shape/query66.out | 109 ++++++------
 .../nereids_tpcds_shape_sf100_p0/shape/query75.out | 112 ++++++------
 .../nereids_tpcds_shape_sf100_p0/shape/query76.out |  73 ++++----
 .../apache/doris/regression/suite/Syncer.groovy    |   2 +-
 .../pipeline/common/custom_env.sh                  |   3 +-
 44 files changed, 1177 insertions(+), 817 deletions(-)
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/properties/{DistributionSpecAny.java
 => DistributionSpecMustShuffle.java} (80%)
 copy docker/thirdparties/docker-compose/oracle/oracle-11.env => 
regression-test/pipeline/common/custom_env.sh (94%)


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

Reply via email to