We a number of log tables on an Infobright server that is being used for providing near real-time analytics to our end users. When attempting to write directly to Infobright log tables, we immediately start noticing a significant number of queries stacking up in our mysql-ib processlist, lock times of 100+ seconds, ultimately resulting in deadlocks and exhausting client connections.
We currently have the same data structure using InnoDB tables on a separate set of servers (MySQL replication Master / Slave) where our application is inserting the data.
What are some best practices for possibly writing this data to an outfile (at a set interval) from each log table on our MySQL replication environment and then transferring / loading the corresponding table data on our Inforbright server? We only want to temporarily stage the data in our replication environment and bulk load on the Infobright side.
Any implementation suggestions or even another approach would be greatly appreciated.

