We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I would like to change the nodeName for CometSparkToColumnar as follows:
nodeName
CometSparkToColumnar
override def nodeName: String = if (child.supportsColumnar) { "CometSparkColumnarToColumnar" } else { "CometSparkRowToColumnar" }
This makes it easier to comprehend which version is being used in a plan:
+- == Final Plan == *(1) ColumnarToRow +- !CometHashAggregate [key#6L, count#88L], Final, [key#6L], [count(1)] +- !CometHashAggregate [key#6L], Partial, [key#6L], [partial_count(1)] +- CometSparkColumnarToColumnar +- Scan In-memory table abc [key#6L] +- InMemoryRelation [key#6L, value#7L, (key + 1)#10L], StorageLevel(disk, memory, deserialized, 1 replicas) +- *(2) ColumnarToRow +- CometProject [key#6L, value#7L, (key + 1)#10L], [id#0L AS key#6L, (id#0L % 8) AS value#7L, (id#0L + 1) AS (key + 1)#10L] +- CometSparkRowToColumnar +- *(1) Range (0, 1000, step=1, splits=5)
No response
The text was updated successfully, but these errors were encountered:
Maybe just override the simpleString and verboseString methods?
simpleString
verboseString
Sorry, something went wrong.
Hey, I'd love to pick this up if possible. Thanks.
@JensonChoi Thanks. I assigned this to you. Please feel free to open PR.
JensonChoi
Successfully merging a pull request may close this issue.
What is the problem the feature request solves?
I would like to change the
nodeName
forCometSparkToColumnar
as follows:This makes it easier to comprehend which version is being used in a plan:
Describe the potential solution
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: