Fork me on GitHub
#datomic
<
2019-07-26
>
timeyyy12:07:51

Hi. I'm curious as to the purpose of the created route53 dns entries when using datomic cloud. Is this for billing or something? Why is this created under http://xyz-datomic.net. Is this designed to be configured for my application use?

Joe Lane14:07:55

@timeyyy_da_man I think those are private routes for datomic to resolve machines within the vpc.

Joe Lane14:07:21

I don't believe it's for application use.

fmnoise20:07:48

is there a way to list datoms by given transaction id in datomic on-prem?

souenzzo21:07:40

(d/q '[:find ?e ?a ?v ?tx ?op
       :in $ ?tx
       :where
       [?i :db/ident ?a]
       [?e ?a ?v ?tx ?op]]
     (d/history db) tx)

fmnoise21:07:58

thanks @U2J4FRT2T, I was using similar query but got Insufficient binding error, [?i :db/ident ?a] does the trick 🎉

👍 4
souenzzo21:07:45

Not sure if in peer API is faster access it from raw datoms or some other API ATM I'm on client API