grc-iit / ChronoLog

ChronoLog: A High-Performance Storage Infrastructure for Activity and Log Workloads
https://chronolog.dev
BSD 2-Clause "Simplified" License
5 stars 4 forks source link

ConfigurationManager Audit and Improvements #155

Open ibrodkin opened 5 months ago

ibrodkin commented 5 months ago

This task is about Configuration Management improvements:

  1. Client configuration management should be separate and minimalistic from the ConfigurationManager used for Chronolog Processes. This would allos to remove current ClientLib dependency on chronolog::ConfigurationManager implementation
  2. Audit ChronoVisor, ChronoGrapher , and ChronoKeeper code and make sure all configurable parameters that are currently hard coded are made configurable
  3. Separate RPC configuration parameters from the parameters that control data processing behavior internal to the respective modules and move the parsing and validation of these parameters' values from the ConfigurationManager and into the respective modules themselves. These methods just take json_objects that generic ConfigurationManager makes available.
  4. Consider making Base RPCConfigurationManager class and module specific configuration classes that derive from the base one.