-
Notifications
You must be signed in to change notification settings - Fork 434
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[VL] Add shuffle writer type to ColumnarExchange display string #6799
Conversation
Thanks for opening a pull request! Could you open an issue for this pull request on Github Issues? https://github.com/apache/incubator-gluten/issues Then could you also rename commit message and pull request title in the following format?
See also: |
Run Gluten Clickhouse CI |
Run Gluten Clickhouse CI |
if (useSortBasedShuffle) GlutenConfig.GLUTEN_SORT_SHUFFLE_WRITER | ||
else GlutenConfig.GLUTEN_HASH_SHUFFLE_WRITER | ||
} | ||
super.stringArgs ++ Iterator(s"$shuffleWriterType") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use [shuffle_writer_type=$shuffleWriterType]
instead?
And does shuffleWriterType is always lower case, it should be consistent
Thanks! Just a little nit. |
Run Gluten Clickhouse CI |
7aa6ca3
to
501ba09
Compare
Run Gluten Clickhouse CI |
if (useSortBasedShuffle) GlutenConfig.GLUTEN_SORT_SHUFFLE_WRITER | ||
else GlutenConfig.GLUTEN_HASH_SHUFFLE_WRITER | ||
} | ||
super.stringArgs ++ Iterator(s"[shuffle_writer_type=$shuffleWriterType]") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may also need to update the tpch-approved-plan
Run Gluten Clickhouse CI |
To distinguish between the hash and sort shuffle writer types more clearly, add "hash" or "sort" to the operator's display string, and remove
[id=#$id]
as it's the same as[plan_id=#$id]
inExchange