Return-Path: X-Original-To: apmail-hadoop-yarn-commits-archive@minotaur.apache.org Delivered-To: apmail-hadoop-yarn-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4ABE510CDE for ; Sat, 8 Jun 2013 00:11:33 +0000 (UTC) Received: (qmail 94869 invoked by uid 500); 8 Jun 2013 00:11:33 -0000 Delivered-To: apmail-hadoop-yarn-commits-archive@hadoop.apache.org Received: (qmail 94796 invoked by uid 500); 8 Jun 2013 00:11:33 -0000 Mailing-List: contact yarn-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: yarn-commits@hadoop.apache.org Delivered-To: mailing list yarn-commits@hadoop.apache.org Received: (qmail 94788 invoked by uid 99); 8 Jun 2013 00:11:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Jun 2013 00:11:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 08 Jun 2013 00:11:32 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7B0B523888D2; Sat, 8 Jun 2013 00:11:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1490882 - in /hadoop/common/trunk/hadoop-yarn-project: CHANGES.txt hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto Date: Sat, 08 Jun 2013 00:11:12 -0000 To: yarn-commits@hadoop.apache.org From: vinodkv@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130608001112.7B0B523888D2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vinodkv Date: Sat Jun 8 00:11:12 2013 New Revision: 1490882 URL: http://svn.apache.org/r1490882 Log: YARN-777. Removed unreferenced objects from .proto files. Contributed by Jian He. Modified: hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto Modified: hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt?rev=1490882&r1=1490881&r2=1490882&view=diff ============================================================================== --- hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt (original) +++ hadoop/common/trunk/hadoop-yarn-project/CHANGES.txt Sat Jun 8 00:11:12 2013 @@ -126,6 +126,9 @@ Release 2.1.0-beta - UNRELEASED YARN-724. Moved ProtoBase from api.records to api.records.impl.pb. (Jian He via vinodkv) + YARN-777. Removed unreferenced objects from .proto files. (Jian He via + vinodkv) + NEW FEATURES YARN-482. FS: Extend SchedulingMode to intermediate queues. Modified: hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto URL: http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto?rev=1490882&r1=1490881&r2=1490882&view=diff ============================================================================== --- hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto (original) +++ hadoop/common/trunk/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-api/src/main/proto/yarn_protos.proto Sat Jun 8 00:11:12 2013 @@ -88,25 +88,6 @@ enum FinalApplicationStatusProto { APP_KILLED = 3; } -message ApplicationStatusProto { - optional int32 response_id = 1; - optional ApplicationAttemptIdProto application_attempt_id = 2; - optional float progress = 3; -} - -message ApplicationMasterProto { - optional ApplicationIdProto application_id = 1; - optional string host = 2; - optional int32 rpc_port = 3; - optional string trackingUrl = 4; - optional ApplicationStatusProto status = 5; - optional YarnApplicationStateProto state = 6; - optional hadoop.common.TokenProto client_token = 7; - optional int32 containerCount = 8; - optional int32 amFailCount = 9; - optional string diagnostics = 10 [default = ""]; -} - message URLProto { optional string scheme = 1; optional string host = 2; @@ -325,11 +306,6 @@ enum ContainerExitStatusProto { //////////////////////////////////////////////////////////////////////// ////// From common////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// -message StringURLMapProto { - optional string key = 1; - optional URLProto value = 2; -} - message StringLocalResourceMapProto { optional string key = 1; optional LocalResourceProto value = 2;