We are moving one legacy component from Berkeley db to mysql so that we can replicate it to distribute read requests and shard it to scale it. I had to dump the entire db contents and stream it over http to some other component. the db content for a single customer can range from 100K to 3-4 Million records. We are using spring JDBC to make the task of dealing with jdbc api simple. Now I was using a ResultSetExtractor to stream the resultset like this.
ResultSetExtractor
ResultSetExtractor
Alternatively, we can subclass JdbcTemplate and override applySettings method and use this subclass.
ReplyDelete