databendlabs / databend

๐——๐—ฎ๐˜๐—ฎ, ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜๐—ถ๐—ฐ๐˜€ & ๐—”๐—œ. Modern alternative to Snowflake. Cost-effective and simple for massive-scale analytics. https://databend.com
https://docs.databend.com
Other
7.85k stars 750 forks source link

feat(query): refactor window spill #16448

Closed Dousir9 closed 1 month ago

Dousir9 commented 2 months ago

I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/

Summary

ๆˆชๅฑ2024-09-17 23 52 57

Performance Test (Databend Cloud Small) (TPC-H SF100)

Spill Query Duration: 98s โ†’ 58s (68%) No Spill Query Duration(set window_partition_spilling_memory_ratio = 0): 25s -> 25s

Full Test Script

set max_memory_usage = 34359738368; -- 32GB
set window_partition_spilling_memory_ratio = 60;
SELECT
    l_orderkey,
    l_partkey,
    l_quantity,
    l_extendedprice,
    ROW_NUMBER() OVER (PARTITION BY l_orderkey ORDER BY l_extendedprice DESC) AS row_num,
    RANK() OVER (PARTITION BY l_orderkey ORDER BY l_extendedprice DESC) AS rank_num,
    SUM(l_extendedprice) OVER (PARTITION BY l_orderkey ORDER BY l_extendedprice DESC ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS cumulative_sum
FROM
    lineitem ignore_result;

Tests

Type of change


This change isโ€‚Reviewable

github-actions[bot] commented 2 months ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.

Dousir9 commented 1 month ago

Thanks to @zhang2014 for helping fix the pipeline.

github-actions[bot] commented 1 month ago

Docker Image for PR

note: this image tag is only available for internal use, please check the internal doc for more details.