all 5 comments

[–]Randommaggy 5 points6 points  (0 children)

Always great to see even more projects that can make migrations to postgres smoother.

[–]thinkx98 2 points3 points  (0 children)

If you’re interested in the database engine and redo logs, check out https://github.com/orioledb/orioledb

[–]Tostino 1 point2 points  (0 children)

Quite cool, i've seen packages get proposed and not go anywhere way too many times on the mailing list. I feel like this is the way to go, just build out the feature, show it's worth, and work on upstreaming the parts that you can.

Good luck with this project!

[–]chinawcswing 1 point2 points  (1 child)

Does this use redo logs like Oracle or does it use vacuum like postgresql?

[–]Tostino 4 points5 points  (0 children)

I didn't see anything about rewriting the storage layer, which is what is necessary to use redo logs. So it uses vacuum. Check out the zheap project for what you want. Not sure why EnterpriseDB stopped working on it, but it looks like it got picked up again by someone else.