Currently, the MySQL connection pool size is hardcoded to 100 in components/log-ingestor/src/ingestion_job_manager.rs. This value should be made configurable through the log-ingestor's configuration.
Context:
Current Implementation:
The hardcoded value appears in the from_config method when calling create_clp_db_mysql_pool.
Desired Behaviour:
The MySQL pool size should be configurable via the log-ingestor configuration, allowing operators to tune it based on their deployment requirements.
Currently, the MySQL connection pool size is hardcoded to 100 in
components/log-ingestor/src/ingestion_job_manager.rs. This value should be made configurable through the log-ingestor's configuration.Context:
Current Implementation:
The hardcoded value appears in the
from_configmethod when callingcreate_clp_db_mysql_pool.Desired Behaviour:
The MySQL pool size should be configurable via the log-ingestor configuration, allowing operators to tune it based on their deployment requirements.