Skip to content
New issue

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

[KYUUBI #5867] HiveEngine support run on YARN mode #5868

Closed
wants to merge 12 commits into from
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ abstract class EngineYarnModeSubmitter extends Logging {
kyuubiConf.get(ENGINE_DEPLOY_YARN_MODE_PRIORITY).foreach { appPriority =>
appContext.setPriority(Priority.newInstance(appPriority))
}
appContext.setApplicationType(s"KYUUBI-${engineType.toUpperCase(Locale.ROOT)}-ENGINE")
appContext.setApplicationType(s"${engineType.toUpperCase(Locale.ROOT)}")
pan3793 marked this conversation as resolved.
Show resolved Hide resolved

val allTags = new util.HashSet[String]
yikf marked this conversation as resolved.
Show resolved Hide resolved
kyuubiConf.get(ENGINE_DEPLOY_YARN_MODE_TAGS).foreach { tags =>
Expand Down
Loading