Clean up state store of an Engine
Problem
Germain Engine contains a local database which keeps track of e.g. parsed log files. Sometime you just want to start from scratch and remove this local cache.
Solution
Navigate to Germain Engine directory
Make sure the Germain Engines are stopped
Execute the following commands to clear & recreate the state store:
cd database rm –rf hsqldb/* nohup ./db-standalone.sh ./createStatestore.sh
CODEShut down state store DB
./db-exec.sh shutdown; \q
CODERestart Germain Engines