Fork me on GitHub
#datomic
<
2020-05-27
>
e09:05:01

any experiences with migrating or mirroring data from one datomic cloud instance to another? is there some straightforward technique to copy/replay all transactions to a new instance, how would they be queried from the source db?

Joe Lane13:05:48

@e https://docs.datomic.com/client-api/datomic.client.api.html#var-tx-range (d/tx-range conn {:start nil :end nil :limit -1}) will get you started.

Joe Lane13:05:01

It's not a trivial transformation though.

stuarthalloway14:05:53

We are considering bumping the Clojure requirement for the Peer API. Please let us know your thoughts! https://forum.datomic.com/t/peer-api-clojure-version-poll/1469

kenny16:05:19

Is it okay to publish a public docker image with the datomic-access script in it?

currentoor18:05:05

Any plans on adding native support to Datomic for the java.time classes? Or just java.time.Instant? Right now I’m storing everything (local dates, points in time, etc) as java.util.Date and converting to java.time.Instant to perform operations. Being able to read things out as java.time.Instant would mean a lot less conversion back and forth.