Fork me on GitHub
#datomic
<
2018-07-06
>
val_waeselynck06:07:11

@rhansen Here's an example of something that breaks if you expose internal ids: https://gist.github.com/vvvvalvalval/6e1888995fe1a90722818eefae49beaf

👍 8
rhansen11:07:22

Two questions: 1) Is excision planned for datomic-cloud? Need to handle GDPR 😕 2) Is gc-storage performed automatically in datomic-cloud?

rhansen11:07:22

(Btw, I've been playing with datomic-cloud for about a week now and I love it. It's simplified a lot of my code, and I don't look forward to work on projects that use other dbs. A big high five to cognitect for this product)

stuarthalloway12:07:38

1) we hear you! and 2) yes

👍 4
henrik15:07:15

I’m in a situation where I’m looking at databases for storing a lot of academic publishing-related information. Metadata about articles, journals, books, reports, publishers, authors and so on. There will be blobs of PDFs with fulltexts of the articles, books, etc. as well, and XML versions of those same PDFs. Is Datomic a good fit for this type of data? (I expect the blobs will end up in storage outside of the database)

marshall15:07:48

@henrik I think Datomic is a great fit for the metadata; that sort of multi-source integration is a very good use case; I would definitely store the blobs out of band (i.e. S3 or elsewhere) and keep a reference to them in Datomic (i.e. a URI or other content address)

henrik15:07:42

Thank you @U05120CBV! The amount of data is likely to grow to approach the amount of digitalized academic publishing data available in the world (i.e., all data from the top 10 publishers to begin with, then the top 20 and so on). Still good?

marshall16:07:38

probably, but i’d want to know more about scale in terms of # of datom

henrik16:07:52

Would it be possible to do something like a Skype chat with yourself or someone else at Cognitect and talk through the specifics?

marshall16:07:20

Sure. I’m traveling next week, but would the week after work? You can email me at <mailto:[email protected]|[email protected]> and we can set something up

sekao16:07:19

when i pull a datom from :tx-data and read its attribute via :a, i get back a number rather than a keyword. why is that?

marshall16:07:34

@sekao all schema definitions are just datoms themselves

marshall16:07:07

try pulling the :db/ident of the number you got back (it’s an entity ID)

marshall16:07:51

i.e. (d/pull (d/db conn) [:db/ident] (:a my-datom))

sekao16:07:05

makes sense. and also you just blew my mind. thanks!

Daniel Hines16:07:45

Is there an easy way to write reports/dashboards against a datomic database?

Daniel Hines16:07:58

For a non-developer, that is.

Daniel Hines16:07:38

To clarify, my business analyst and database programmer colleagues are running into a bunch of problems which I think Datomic solves beautifully, but they depend on tools like SSRS and PowerBI to write lots and lots of reports.

henrik18:07:01

We’ve used another project from the Clojure landscape: https://www.metabase.com/ Unfortunately, they don’t support Datomic (yet). I would love for them to, though. I’m sure Datomic can be set up to export continuously to one of the supported databases, however.

eoliphant18:07:08

On a couple of my projects we just use transaction log/onyx to stream stuff in to RedShift, etc. There’s not much direct support from your typical BI tools for datomic

jjttjj19:07:12

anyone know if it's possible to get the datomic ions tutorial working on windows (and thus without the clojure command line tools)?

luchini14:07:44

You will need at least Java installed and Clojure’s jar…. clojure cli is just a script that calls Java with a well-crafted classpath