YARN-833. Moved Graph and VisualizeStateMachine into yarn.state package. Contributed by Zhijie Shen.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1493654 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b9efe6bd4a
commit
4662b8b443
@ -110,7 +110,7 @@
|
||||
</goals>
|
||||
<configuration>
|
||||
<classpathScope>test</classpathScope>
|
||||
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass>
|
||||
<mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
|
||||
<arguments>
|
||||
<argument>MapReduce</argument>
|
||||
<argument>org.apache.hadoop.mapreduce.v2.app.job.impl.JobImpl,
|
||||
|
@ -392,6 +392,9 @@ Release 2.1.0-beta - UNRELEASED
|
||||
|
||||
YARN-825. Fixed javadoc and annotations for yarn-common module. (vinodkv)
|
||||
|
||||
YARN-833. Moved Graph and VisualizeStateMachine into yarn.state package.
|
||||
(Zhijie Shen via vinodkv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
YARN-512. Log aggregation root directory check is more expensive than it
|
||||
|
@ -15,7 +15,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.yarn.util;
|
||||
package org.apache.hadoop.yarn.state;
|
||||
|
||||
import java.io.FileWriter;
|
||||
import java.io.IOException;
|
@ -28,7 +28,6 @@
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Public;
|
||||
import org.apache.hadoop.classification.InterfaceStability.Evolving;
|
||||
import org.apache.hadoop.yarn.util.Graph;
|
||||
|
||||
/**
|
||||
* State machine topology.
|
||||
|
@ -15,14 +15,13 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.apache.hadoop.yarn.util;
|
||||
package org.apache.hadoop.yarn.state;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience.Private;
|
||||
import org.apache.hadoop.yarn.state.StateMachineFactory;
|
||||
|
||||
@Private
|
||||
public class VisualizeStateMachine {
|
@ -111,7 +111,7 @@
|
||||
<goal>java</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass>
|
||||
<mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
|
||||
<classpathScope>compile</classpathScope>
|
||||
<arguments>
|
||||
<argument>NodeManager</argument>
|
||||
|
@ -99,7 +99,7 @@
|
||||
<goal>java</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass>
|
||||
<mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
|
||||
<classpathScope>compile</classpathScope>
|
||||
<arguments>
|
||||
<argument>ResourceManager</argument>
|
||||
|
Loading…
Reference in New Issue
Block a user