Replies: 4 comments 6 replies
-
are we able to find the driver pod via |
Beta Was this translation helpful? Give feedback.
-
We're already using |
Beta Was this translation helpful? Give feedback.
-
This is a bug we shall fix
Give a conf advisor to benefit k8s users sound good to me |
Beta Was this translation helpful? Give feedback.
-
Short note of current status: So we're finding another way. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In Spark, spark.app.name is the part of K8S service object for driver otherwise
spark.kubernetes.driver.resourceNamePrefix
is set. And K8S service name is used to make domain name so service name is limited to 63 length.Currently Kyuubi's sparksql eninge name is something like
kyuubi-user-spark-sql-admin-default-f8221ce2-dc94-4f15-a44f-04cc0cc5cfa0-86a5c882ed35143e-driver
, so it cannot be used for domain name, and spark generate service name:In the result, Spark Driver's service name is like this:
spark-54032b82ed3515c8-driver-svc
and we loose many informations and cannot discover user's spark driver.I think kyuubi set
spark.kubernetes.driver.resourceNamePrefix
tokyuubi-user-spark-sql-admin-default
when Spark master is K8S, whole service discovery is a lot easier.How about this?
Beta Was this translation helpful? Give feedback.
All reactions