> it doesn't look like H2
> implements master-slave replication
No, so far not.
> 3) Slave is in read only mode
Is this a requirement? If not, then the replication could be on the
file level - http://en.wikipedia.org/wiki/Replication_(computer_science)#Disk_storage_replication
- even if you want read-only access you could still implement the
mechanism in the file level. That would be the easiest solution: H2
already supports a pluggable file system interface
(org.h2.store.fs.FileSystem).
> Is there an API for
> reading the database.X.log.db files? Will they contain the info I
> need?
In theory, you could use the log file, but I'm currently writing a new
storage mechanism. You probably don't want to implement something that
will be removed later.
Regards,
Thomas