HDFS-15283. Cache pool MAXTTL is not persisted and restored on cluster restart. Contributed by Stephen O'Donnell.
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org> (cherry picked from commit3481895f8a
) (cherry picked from commitaaad947c74
) (cherry picked from commit041c93a26c
) (cherry picked from commit0ea8f3a19c
)
This commit is contained in:
parent
8f60971138
commit
9ec141c77f
|
@ -1041,6 +1041,10 @@ public class CacheManager {
|
|||
if (p.getLimit() != null)
|
||||
b.setLimit(p.getLimit());
|
||||
|
||||
if (p.getMaxRelativeExpiryMs() != null) {
|
||||
b.setMaxRelativeExpiry(p.getMaxRelativeExpiryMs());
|
||||
}
|
||||
|
||||
pools.add(b.build());
|
||||
}
|
||||
|
||||
|
@ -1106,6 +1110,10 @@ public class CacheManager {
|
|||
if (p.hasLimit())
|
||||
info.setLimit(p.getLimit());
|
||||
|
||||
if (p.hasMaxRelativeExpiry()) {
|
||||
info.setMaxRelativeExpiryMs(p.getMaxRelativeExpiry());
|
||||
}
|
||||
|
||||
addCachePool(info);
|
||||
}
|
||||
|
||||
|
|
|
@ -568,10 +568,12 @@ public class TestCacheDirectives {
|
|||
String groupName = "partygroup";
|
||||
FsPermission mode = new FsPermission((short)0777);
|
||||
long limit = 747;
|
||||
long maxExpiry = 1234567890;
|
||||
dfs.addCachePool(new CachePoolInfo(pool)
|
||||
.setGroupName(groupName)
|
||||
.setMode(mode)
|
||||
.setLimit(limit));
|
||||
.setLimit(limit)
|
||||
.setMaxRelativeExpiryMs(maxExpiry));
|
||||
RemoteIterator<CachePoolEntry> pit = dfs.listCachePools();
|
||||
assertTrue("No cache pools found", pit.hasNext());
|
||||
CachePoolInfo info = pit.next().getInfo();
|
||||
|
@ -579,6 +581,7 @@ public class TestCacheDirectives {
|
|||
assertEquals(groupName, info.getGroupName());
|
||||
assertEquals(mode, info.getMode());
|
||||
assertEquals(limit, (long)info.getLimit());
|
||||
assertEquals(maxExpiry, (long)info.getMaxRelativeExpiryMs());
|
||||
assertFalse("Unexpected # of cache pools found", pit.hasNext());
|
||||
|
||||
// Create some cache entries
|
||||
|
@ -639,6 +642,7 @@ public class TestCacheDirectives {
|
|||
assertEquals(groupName, info.getGroupName());
|
||||
assertEquals(mode, info.getMode());
|
||||
assertEquals(limit, (long)info.getLimit());
|
||||
assertEquals(maxExpiry, (long)info.getMaxRelativeExpiryMs());
|
||||
assertFalse("Unexpected # of cache pools found", pit.hasNext());
|
||||
|
||||
dit = dfs.listCacheDirectives(null);
|
||||
|
|
Loading…
Reference in New Issue