Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
XorSum committed Mar 4, 2024
1 parent 97d02a4 commit d93028b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ import org.apache.kyuubi.events.KyuubiEvent
* @param ip Client IP address
* @param serverIp Kyuubi Server IP address
* @param totalOperations how many queries and meta calls
* @param sessionRunTime total time of running the session (including fetching shuffle data)
* in milliseconds
* @param sessionCpuTime total CPU time of running the session (including fetching shuffle data)
* in nanoseconds
*/
case class SessionEvent(
@KVIndexParam sessionId: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ import org.apache.kyuubi.events.KyuubiEvent
* @param sessionId the identifier of the parent session
* @param sessionUser the authenticated client user
* @param executionId the query execution id of this operation
* @param operationRunTime total time of running the operation (including fetching shuffle data)
* in milliseconds
* @param operationCpuTime total CPU time of running the operation (including fetching shuffle data)
* in nanoseconds
*/
case class SparkOperationEvent(
@KVIndexParam statementId: String,
Expand Down

0 comments on commit d93028b

Please sign in to comment.