sarutak commented on a change in pull request #31707:
URL: https://github.com/apache/spark/pull/31707#discussion_r587374400
##########
File path: core/src/main/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala
##########
@@ -246,8 +254,14 @@ private[spark] object RDDOperationGraph extends Logging {
} else {
""
}
+ val outputDeterministicLevel = node.outputDeterministicLevel match {
+ case DeterministicLevel.DETERMINATE => ""
+ case DeterministicLevel.INDETERMINATE => " [indeterminate]"
+ case DeterministicLevel.UNORDERED => " [unordered]"
+ }
Review comment:
To be consistent with `[Barrier]` and `[Cached]`, t would be better to
capitalize them.
##########
File path: core/src/main/scala/org/apache/spark/ui/scope/RDDOperationGraph.scala
##########
@@ -246,8 +254,14 @@ private[spark] object RDDOperationGraph extends Logging {
} else {
""
}
+ val outputDeterministicLevel = node.outputDeterministicLevel match {
+ case DeterministicLevel.DETERMINATE => ""
+ case DeterministicLevel.INDETERMINATE => " [indeterminate]"
+ case DeterministicLevel.UNORDERED => " [unordered]"
+ }
Review comment:
To be consistent with `[Barrier]` and `[Cached]`, it would be better to
capitalize them.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]