Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[opt](exec) Use PASSTHROUGH to improve the concurrency of the ADAPTIV…
…E_PASSTHROUGH SINK. (#44925) before ``` op -> local sink(1) -> local source (n) ``` now ``` op -> local passthrough(1) -> local passthrough(n) -> local sink(n) -> local source (n) ``` profile ``` Pipeline : 1(instance_num=3): AGGREGATION_SINK_OPERATOR (id=4 , nereids_id=255): CROSS_JOIN_OPERATOR (id=3 , nereids_id=245): LOCAL_EXCHANGE_OPERATOR (ADAPTIVE_PASSTHROUGH) (id=-5): Pipeline : 2(instance_num=3): LOCAL_EXCHANGE_SINK_OPERATOR (ADAPTIVE_PASSTHROUGH) (id=-5): LOCAL_EXCHANGE_OPERATOR (PASSTHROUGH) (id=-6): Pipeline : 3(instance_num=1): LOCAL_EXCHANGE_SINK_OPERATOR (PASSTHROUGH) (id=-6): OLAP_SCAN_OPERATOR (id=2. nereids_id=234. table name = nums1(nums1)): ```
- Loading branch information