diff options
author | Poornima G <pgurusid@redhat.com> | 2018-03-20 12:15:51 +0530 |
---|---|---|
committer | Poornima G <pgurusid@redhat.com> | 2018-03-24 05:38:47 +0000 |
commit | fef929342ec33c388074ad47b81725d73cde6597 (patch) | |
tree | 19489d3a90f1d18da8c1515b63594183a48de14c /extras/group-metadata-cache | |
parent | e043938e2895e4072a3c60b4a0063ef66d34f7b3 (diff) |
extras/group: Change the server inode table size when upcall is on
By default server inode table size is 16K, when upcall is enabled,
there is going to be too many forgets sent on inodes as the brick can
hold only 16K inodes in memory, so we increased this to 50K. This is
still less than the client inode table size. We have seen performance
improvement when server inode table size is set to 200000(almost as
client inode table size). Hence changing the value to 200000.
Increasing this increases the memory consumption by <1MB.
BUG: 1559235
Change-Id: I931db965cd34bf33094328541bd5a633b3357805
Signed-off-by: Poornima G <pgurusid@redhat.com>
Diffstat (limited to 'extras/group-metadata-cache')
-rw-r--r-- | extras/group-metadata-cache | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/group-metadata-cache b/extras/group-metadata-cache index 0f780eb91aa..b890b288fc7 100644 --- a/extras/group-metadata-cache +++ b/extras/group-metadata-cache @@ -3,4 +3,4 @@ features.cache-invalidation-timeout=600 performance.stat-prefetch=on performance.cache-invalidation=on performance.md-cache-timeout=600 -network.inode-lru-limit=50000 +network.inode-lru-limit=200000 |