[
https://issues.apache.org/jira/browse/EAGLE-593?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
wujinhu updated EAGLE-593:
--------------------------
Description:
1. User may want to support different version of hadoop in eagle jpm when uses
topology asembly to be a final package. For this requirement, we add profiles
to eagle-topology-assembly pom.xml. In this pom, we could add different
versions of Hadoop.
2. Fix StormSubmitter does not support submit another jar
In storm StormSubmitter
----------------------------------------------------------------------------------------------
private static String submittedJar = null;
private static void submitJar(Map conf, ProgressListener listener) {
if(submittedJar==null) {
LOG.info("Jar not uploaded to master yet. Submitting jar...");
String localJar = System.getProperty("storm.jar");
submittedJar = submitJar(conf, localJar, listener);
} else {
LOG.info("Jar already uploaded to master. Not submitting jar.");
}
}
----------------------------------------------------------------------------------------------
It can not submit another jar once submittedJar is set.
So I rewrote this class.
3. Fix MR Running Job that does not set finished jobs' state
was:User may want to support different version of hadoop in eagle jpm. For
this requirement, we add profiles to eagle-jpm pom.xml. In this pom, we could
add different versions of Hadoop.
> Eagle Topology assembly multi-version Hadoop support & bug fix
> --------------------------------------------------------------
>
> Key: EAGLE-593
> URL: https://issues.apache.org/jira/browse/EAGLE-593
> Project: Eagle
> Issue Type: Improvement
> Reporter: wujinhu
> Assignee: wujinhu
>
> 1. User may want to support different version of hadoop in eagle jpm when
> uses topology asembly to be a final package. For this requirement, we add
> profiles to eagle-topology-assembly pom.xml. In this pom, we could add
> different versions of Hadoop.
> 2. Fix StormSubmitter does not support submit another jar
> In storm StormSubmitter
> ----------------------------------------------------------------------------------------------
> private static String submittedJar = null;
> private static void submitJar(Map conf, ProgressListener listener) {
> if(submittedJar==null) {
> LOG.info("Jar not uploaded to master yet. Submitting jar...");
> String localJar = System.getProperty("storm.jar");
> submittedJar = submitJar(conf, localJar, listener);
> } else {
> LOG.info("Jar already uploaded to master. Not submitting jar.");
> }
> }
> ----------------------------------------------------------------------------------------------
> It can not submit another jar once submittedJar is set.
> So I rewrote this class.
> 3. Fix MR Running Job that does not set finished jobs' state
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)