From 0466743afb13aa17488280cb2ac41ca7de088972 Mon Sep 17 00:00:00 2001 From: Rohith Sharma K S Date: Fri, 29 Jan 2016 11:51:47 +0530 Subject: [PATCH] YARN-4219. addendum patch to fix javadoc errors (cherry picked from commit 09d831c95ba18e2892cddd749f6e06f112dda7f5) --- .../yarn/server/timeline/LevelDBCacheTimelineStore.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 976241f37db..3ff5dd7d27e 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.