ktoso / akka-persistence-hbase

An HBase backed Journal for Akka's experimental persistence / event-sourcing
Apache License 2.0
47 stars 20 forks source link

flush() after each batch write, use AP configs to size flushes #6

Closed ktoso closed 10 years ago

ktoso commented 10 years ago

We currently use asyncbase flushing, and configure separately. Instead use: http://doc.akka.io/docs/akka/2.3.0-RC1/scala/persistence.html#batch-writes

That is, flush after each batch write,

ktoso commented 10 years ago

done;