Hi,
How do I make a local setup with multiple DataMiner configs using Cassandra db without blowing up the memory of my machine?
In the end I would like to have
- 1 Config that runs the Main release,
- 1 Config that runs the Feature release and
- 1 Config that runs the Feature release with additional Solutions such as SRM.
The purpose of these setups is to have the environment available to build / test something at-hoc.
This means I will not have a lot of elements / data since I'll be removing them when it is no longer required. => always have a clean setup at hand.
Hi Mieke,
Since you are running locally Cassandra (and probably Elastic - because of SRM), a possible option could be editing the settings described in Standalone Elasticsearch Cluster Installer , but for Cassandra. You could for example reduce the memory size to 2GB (2048):
-Xms2048M
-Xmx2048M
The path for Cassandra is similar to Elastic:
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Apache Software Foundation\Procrun 2.0\cassandra\Parameters\Java
I have been running DataMiner config files (with local Cassandra and Elastic nodes) for a while and normally I don't have memory issues with Cassandra. However, Elastic could consume quite some memory.
Great! Thanks Miguel.