You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ozone.apache.org by "Xu Shao Hong (Jira)" <ji...@apache.org> on 2022/02/21 09:51:00 UTC

[jira] [Created] (HDDS-6357) RenameKey request has memory leak

Xu Shao Hong created HDDS-6357:
----------------------------------

             Summary: RenameKey request has memory leak
                 Key: HDDS-6357
                 URL: https://issues.apache.org/jira/browse/HDDS-6357
             Project: Apache Ozone
          Issue Type: Bug
            Reporter: Xu Shao Hong
            Assignee: Xu Shao Hong


Issue: The heap is full of keyInfo from TableCache after renameKey API test and the memory can not be evicted with manual FGC.

 

During _validateAndUpdateCache_ in OMKeyRenameRequest, the keyTable will add twice cache entry( fromKey and toKey). This process actually does this way:
{code:java}
public void put(CACHEKEY cacheKey, CACHEVALUE value) {
  cache.put(cacheKey, value);
  epochEntries.add(new EpochEntry<>(value.getEpoch(), cacheKey));
}
{code}
this EpochEntry right now only supports the unary operation. 
{code:java}
@Override
public int compareTo(Object o) {
  if(this.epoch == ((EpochEntry<?>)o).epoch) {
    return 0;
  } else if (this.epoch < ((EpochEntry<?>)o).epoch) {
    return -1;
  } else {
    return 1;
  }
} {code}
hence, when renaming A to B in one transaction, the cache will add two cache entries but epochEntries cannot add B after adding A as they are compared as the same.
{code:java}
keyTable.addCacheEntry(new CacheKey<>(fromKey),
    new CacheValue<>(Optional.absent(), trxnLogIndex));

keyTable.addCacheEntry(new CacheKey<>(toKey),
    new CacheValue<>(Optional.of(fromKeyValue), trxnLogIndex)); {code}
The solution is easy and should be no side effects. 

We can simply add a check for EpochEntry's value.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org