> --
> You received this message because you are subscribed to the Google Groups "mongodb-user" group.
> To post to this group, send email to mongod...@googlegroups.com.
> To unsubscribe from this group, send email to mongodb-user...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/mongodb-user?hl=en.
>
As for the sql integration/replication I would suggest writing some
custom code to do the logical replication for your application.
Specifically I would either implement a trigger to log the records or
keep track of them with a date/timestamp so they can be easily found
and replicated. If you need more than replicate on insert (you have
mutable data) then you could use the same mechanism for them to update
data in mongodb.
I don't know any generic framework which is already written for this
as each action is pretty custom.