databendlabs / databend

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

chore(executor): more edge detail for executing graph #16468

Closed zhang2014 closed 1 week ago

zhang2014 commented 1 week ago

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

Summary

chore(executor): more edge detail for executing graph

before:

digraph {
    0 [ label = "system.one" ]
    1 [ label = "CompoundBlockOperator(Map)" ]
    2 [ label = "CompoundBlockOperator(Project)" ]
    3 [ label = "PullingExecutorSink" ]
    0 -> 1 [ ]
    1 -> 2 [ ]
    2 -> 3 [ ]
}

after

digraph {
    0 [ label = "system.one" ]
    1 [ label = "CompoundBlockOperator(Map)" ]
    2 [ label = "CompoundBlockOperator(Project)" ]
    3 [ label = "PullingExecutorSink" ]
    0 -> 1 [ 0 -> 0]
    1 -> 2 [ 0 -> 0]
    2 -> 3 [ 0 -> 0]
}

Tests

Type of change


This change isโ€‚Reviewable