We are planning to implement a system for logging a high frequency of market ticks into a DB for further analysis. To simply get a little what kind of storage performance we can
If you want insert-only operations, you can get more out of mysql by using Archive engine and INSERT DELAYED.
INSERT DELAYED
Otherwise, try any of the local-storage KV engines: BDB, QDBM, Tokyo Cabinet, etc.