hey !
I am currently handling a large volume of log data generated every second, which needs to be inserted into a Manticore table/index called logs
. Inserting all these records into a single Manticore server could potentially cause a crash due to the high load. To mitigate this, I have employed Nginx as a load balancer to distribute the insertion workload across multiple Manticore servers, such as serverA_manticore
, serverB_manticore
, serverC_manticore
, and so on.
I am seeking an alternative approach to load balancing or a native solution within Manticore that supports this kind of distributed insertion behavior. Thank you.