You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ul...@apache.org on 2021/12/06 08:40:45 UTC

[incubator-kyuubi] branch version created (now d256766)

This is an automated email from the ASF dual-hosted git repository.

ulyssesyou pushed a change to branch version
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git.


      at d256766  version

This branch includes the following new commits:

     new d256766  version

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[incubator-kyuubi] 01/01: version

Posted by ul...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ulyssesyou pushed a commit to branch version
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git

commit d25676644461272fa1b9a03b9e5e788bf59bdbea
Author: ulysses-you <ul...@gmail.com>
AuthorDate: Mon Dec 6 16:23:44 2021 +0800

    version
---
 .../src/main/scala/org/apache/spark/ui/EnginePage.scala             | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala b/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala
index 2f40323..8f5b79a 100644
--- a/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala
+++ b/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala
@@ -29,7 +29,7 @@ import org.apache.commons.text.StringEscapeUtils
 import org.apache.spark.ui.TableSourceUtil._
 import org.apache.spark.ui.UIUtils._
 
-import org.apache.kyuubi.Utils
+import org.apache.kyuubi.{KYUUBI_VERSION, Utils}
 import org.apache.kyuubi.engine.spark.events.{SessionEvent, SparkStatementEvent}
 
 case class EnginePage(parent: EngineTab) extends WebUIPage("") {
@@ -55,6 +55,10 @@ case class EnginePage(parent: EngineTab) extends WebUIPage("") {
     val timeSinceStart = System.currentTimeMillis() - parent.engine.getStartTime
     <ul class ="list-unstyled">
       <li>
+        <strong>Kyuubi Version: </strong>
+        {KYUUBI_VERSION}
+      </li>
+      <li>
         <strong>Started at: </strong>
         {new Date(parent.engine.getStartTime)}
       </li>