Naveen created SAMZA-446:
----------------------------
Summary: Fix misconfiguration of block cache size
Key: SAMZA-446
URL: https://issues.apache.org/jira/browse/SAMZA-446
Project: Samza
Issue Type: Bug
Reporter: Naveen
If rocksdb.cache.size.bytes is set, then it's not equally divided among all the
containers, we can get rid of this configuration
cacheSizePerContainer = storeConfig.getLong("rocksdb.cache.size.bytes",
cacheSizePerContainer)
We already have an configuration:
val cacheSize = storeConfig.getLong("container.cache.size.bytes", 100 *
1024 * 1024L)
which should be sufficient.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)