Return-Path: X-Original-To: apmail-hadoop-common-commits-archive@www.apache.org Delivered-To: apmail-hadoop-common-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 94B1418BAB for ; Fri, 29 Jan 2016 06:22:36 +0000 (UTC) Received: (qmail 84379 invoked by uid 500); 29 Jan 2016 06:22:36 -0000 Delivered-To: apmail-hadoop-common-commits-archive@hadoop.apache.org Received: (qmail 84306 invoked by uid 500); 29 Jan 2016 06:22:36 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 84297 invoked by uid 99); 29 Jan 2016 06:22:36 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2016 06:22:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2CC7FDFF8E; Fri, 29 Jan 2016 06:22:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rohithsharmaks@apache.org To: common-commits@hadoop.apache.org Message-Id: <5b4767a5657649d383bf0e229963f29a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hadoop git commit: YARN-4219. addendum patch to fix javadoc errors Date: Fri, 29 Jan 2016 06:22:36 +0000 (UTC) Repository: hadoop Updated Branches: refs/heads/trunk f67149ab0 -> 09d831c95 YARN-4219. addendum patch to fix javadoc errors Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/09d831c9 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/09d831c9 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/09d831c9 Branch: refs/heads/trunk Commit: 09d831c95ba18e2892cddd749f6e06f112dda7f5 Parents: f67149a Author: Rohith Sharma K S Authored: Fri Jan 29 11:51:47 2016 +0530 Committer: Rohith Sharma K S Committed: Fri Jan 29 11:51:47 2016 +0530 ---------------------------------------------------------------------- .../hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/09d831c9/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/main/java/org/apache/hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java ---------------------------------------------------------------------- diff --git a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/main/java/org/apache/hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/main/java/org/apache/hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java index 976241f..3ff5dd7 100644 --- a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/main/java/org/apache/hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java +++ b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timeline-pluginstorage/src/main/java/org/apache/hadoop/yarn/server/timeline/LevelDBCacheTimelineStore.java @@ -46,11 +46,11 @@ import java.util.Map; * There are two partitions of the key space. One partition is to store a * entity id to start time mapping: * - * i!ENTITY_ID!ENTITY_TYPE -> ENTITY_START_TIME + * i!ENTITY_ID!ENTITY_TYPE to ENTITY_START_TIME * * The other partition is to store the actual data: * - * e!START_TIME!ENTITY_ID!ENTITY_TYPE -> ENTITY_BYTES + * e!START_TIME!ENTITY_ID!ENTITY_TYPE to ENTITY_BYTES * * This storage does not have any garbage collection mechanism, and is designed * mainly for caching usages.