Explorar o código

YARN-6770. A small mistake in the example of TimelineClient. Contributed by Jinjiang Ling.

Naganarasimha %!s(int64=7) %!d(string=hai) anos
pai
achega
ba5b056e8a

+ 2 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/TimelineServer.md

@@ -274,7 +274,7 @@ Here is an example:
 
     try {
       TimelineDomain myDomain = new TimelineDomain();
-      myDomain.setID("MyDomain");
+      myDomain.setId("MyDomain");
       // Compose other Domain info ....
 
       client.putDomain(myDomain);
@@ -282,7 +282,7 @@ Here is an example:
       TimelineEntity myEntity = new TimelineEntity();
       myEntity.setDomainId(myDomain.getId());
       myEntity.setEntityType("APPLICATION");
-      myEntity.setEntityID("MyApp1")
+      myEntity.setEntityId("MyApp1");
       // Compose other entity info
 
       TimelinePutResponse response = client.putEntities(entity);