Config to restrict history pod size

You can tune history (mutablestate) and events cache sizes for your cluster through dynamic config. Relevant knobs are the following:

  1. history.cacheInitialSize
  2. history.cacheMaxSize
  3. history.eventsCacheInitialSize
  4. history.eventsCacheMaxSize

These sizes represent number of cached entries per shard. So you might need to take into account the size of the cluster (number of history hosts) before setting a value which makes sense for your cluster deployment. For instance lets say you have 100 shards and 4 history host, then on average 25 shards would be placed on each history host. So if you set history.cacheMaxSize to 10 then it would mean 250 cached items on a single host on average.

1 Like