gpt4 book ai didi

org.springframework.yarn.boot.app.YarnPushApplication类的使用及代码示例

转载 作者:知者 更新时间:2024-03-16 06:19:31 24 4
gpt4 key购买 nike

本文整理了Java中org.springframework.yarn.boot.app.YarnPushApplication类的一些代码示例,展示了YarnPushApplication类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YarnPushApplication类的具体详情如下:
包路径:org.springframework.yarn.boot.app.YarnPushApplication
类名称:YarnPushApplication

YarnPushApplication介绍

[英]Generic Spring Boot client application used to push Spring Yarn Boot based apps into hdfs.

Pushed application bundle is merely a collection of files inside a directory. All files in this directory is considered to belong to the bundle and directory should not have any other files or nested directories.
[中]通用Spring Boot客户端应用程序,用于将基于Spring Warn Boot的应用程序推送到hdfs中。
推送的应用程序包只是目录中文件的集合。此目录中的所有文件都被视为属于捆绑包,并且该目录不应包含任何其他文件或嵌套目录。

代码示例

代码示例来源:origin: org.springframework.data/spring-yarn-boot

/**
 * Run a {@link SpringApplication} build by a
 * {@link SpringApplicationBuilder} using an empty args.
 *
 * @see #run(String...)
 */
public String run() {
  return run(new String[0]);
}

代码示例来源:origin: org.springframework.cloud/spring-cloud-dataflow-module-deployer-yarn

@Override
public void pushApplication(String appVersion) {
  YarnPushApplication app = new YarnPushApplication();
  app.applicationVersion(appVersion);
  Properties instanceProperties = new Properties();
  instanceProperties.setProperty("spring.yarn.applicationVersion", appVersion);
  app.configFile("application.properties", instanceProperties);
  runApp(app);
}

代码示例来源:origin: org.springframework.data/spring-yarn-boot-cli

@Override
protected void runApplication(OptionSet options) throws Exception {
  String appVersion = options.valueOf(applicationVersionOption);
  YarnPushApplication app = new YarnPushApplication();
  app.applicationVersion(appVersion);
  Properties instanceProperties = new Properties();
  instanceProperties.setProperty("spring.yarn.applicationVersion", appVersion);
  app.configFile("application.properties", instanceProperties);
  handleApplicationRun(app);
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com