Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Migrate to datomic from postgres

is there any way to migrate to datomic directly from postgres..?

I have one existing postgres database i am planning to migrate to datomic is there any source or library from where i can get help?

like image 586
piyushmandovra Avatar asked Jan 05 '15 11:01

piyushmandovra


1 Answers

There's no straight-forward answer to this question or automated, general purpose tool for this. In general, ETL is not trivial, especially when moving between different types of databases (e.g. from table-backed SQL to Datomic).

That said, to get started in solving this for your case you might find Onyx, a project that transfers data to and from a SQL database (MySQL) and Datomic, to be a helpful example.

EDIT: As of December 2016, there is now a video available demonstrating a way to architecture an import job from SQL to Datomic by Stu Halloway, available here.

like image 187
Ben Kamphaus Avatar answered Nov 02 '22 11:11

Ben Kamphaus