Fork me on GitHub
#datomic
<
2019-05-17
>
souenzzo14:05:03

Dynamos continuos backup service serve as datomic backup? (on prem) Can I restore it?

marshall14:05:48

@souenzzo no https://docs.datomic.com/on-prem/ha.html#other-consistent-copy-options - DDB backup does not guarantee transactional ordering so is not a suitable option for Datomic backup

kardan14:05:02

Anyone know from the top of their head why my web Ion respond with {“message”:“Missing Authentication Token”} ?

marshall14:05:03

@kardan you need to add a path after your invoke url

marshall14:05:15

i.e. add /datomic to the url you invoke

marshall14:05:54

https://docs.datomic.com/cloud/ions/ions-tutorial.html#deploy-apigw “Append “/datomic” to the URL, and call your web service via curl”

kardan14:05:57

Is that always needed, you can’t serve to root of a domain?

marshall14:05:27

I think you have to configure that via API gateway

kardan14:05:50

Ok, I’ll read on. Thanks for getting me past this hurdle!

eraserhd18:05:55

I... think the only possibility is that there's an attribute in the database that hasn't been installed? So it can't be altered? Is that possible?

eraserhd18:05:43

I ran a (d/transact conn [[:db/add :db.part/db :db.install/attribute :taskexec/depends-on]]) and retried, getting the exact same error.

johnj21:05:32

Can the attributes of an entity that has an attribute with :db.unique/value be updated using map form?

favila21:05:57

like this: {:db/id [:unique-value "the-value"} :more-attrs 123}

johnj21:05:59

ah right! thanks