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:
Vinod Kumar Vavilapalli 2013-06-17 06:51:51 +00:00
parent b9efe6bd4a
commit 4662b8b443
7 changed files with 8 additions and 7 deletions

View File

@ -110,7 +110,7 @@
</goals> </goals>
<configuration> <configuration>
<classpathScope>test</classpathScope> <classpathScope>test</classpathScope>
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass> <mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
<arguments> <arguments>
<argument>MapReduce</argument> <argument>MapReduce</argument>
<argument>org.apache.hadoop.mapreduce.v2.app.job.impl.JobImpl, <argument>org.apache.hadoop.mapreduce.v2.app.job.impl.JobImpl,

View File

@ -392,6 +392,9 @@ Release 2.1.0-beta - UNRELEASED
YARN-825. Fixed javadoc and annotations for yarn-common module. (vinodkv) 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 OPTIMIZATIONS
YARN-512. Log aggregation root directory check is more expensive than it YARN-512. Log aggregation root directory check is more expensive than it

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.hadoop.yarn.util; package org.apache.hadoop.yarn.state;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;

View File

@ -28,7 +28,6 @@
import org.apache.hadoop.classification.InterfaceAudience.Public; import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.classification.InterfaceStability.Evolving; import org.apache.hadoop.classification.InterfaceStability.Evolving;
import org.apache.hadoop.yarn.util.Graph;
/** /**
* State machine topology. * State machine topology.

View File

@ -15,14 +15,13 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.hadoop.yarn.util; package org.apache.hadoop.yarn.state;
import java.lang.reflect.Field; import java.lang.reflect.Field;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.apache.hadoop.classification.InterfaceAudience.Private; import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.yarn.state.StateMachineFactory;
@Private @Private
public class VisualizeStateMachine { public class VisualizeStateMachine {

View File

@ -111,7 +111,7 @@
<goal>java</goal> <goal>java</goal>
</goals> </goals>
<configuration> <configuration>
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass> <mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
<classpathScope>compile</classpathScope> <classpathScope>compile</classpathScope>
<arguments> <arguments>
<argument>NodeManager</argument> <argument>NodeManager</argument>

View File

@ -99,7 +99,7 @@
<goal>java</goal> <goal>java</goal>
</goals> </goals>
<configuration> <configuration>
<mainClass>org.apache.hadoop.yarn.util.VisualizeStateMachine</mainClass> <mainClass>org.apache.hadoop.yarn.state.VisualizeStateMachine</mainClass>
<classpathScope>compile</classpathScope> <classpathScope>compile</classpathScope>
<arguments> <arguments>
<argument>ResourceManager</argument> <argument>ResourceManager</argument>