How can I configure MySQL to replicate a table to another server without writing the table on the first server? Can I write binary log but not commit the changes to the local table?
EDIT
I want to automatically (not one time) export all data inserted to a table to another mysql server, but to improve performance, I don’t want to write the data to the master server, I want to directly send it to another server.
This can be achieved through standard replication. Just use the
BLACKHOLEstorage engine on the master server.