This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-05
Channels
- # beginners (240)
- # boot (5)
- # cider (48)
- # clara (2)
- # cljs-dev (3)
- # cljsrn (66)
- # clojure (111)
- # clojure-denver (2)
- # clojure-italy (42)
- # clojure-nl (5)
- # clojure-spec (12)
- # clojure-uk (45)
- # clojurescript (138)
- # community-development (7)
- # core-async (8)
- # datomic (27)
- # emacs (21)
- # euroclojure (6)
- # figwheel (10)
- # fulcro (29)
- # graphql (5)
- # hoplon (3)
- # luminus (1)
- # lumo (7)
- # mount (4)
- # off-topic (13)
- # onyx (20)
- # parinfer (3)
- # pedestal (4)
- # precept (1)
- # proton (3)
- # re-frame (41)
- # reagent (3)
- # reitit (28)
- # ring-swagger (7)
- # shadow-cljs (88)
- # specter (1)
- # testing (10)
- # tools-deps (27)
- # vim (58)
Would anyone recommend against storing edn in datomic? I can query it using read-string with some destructuring in datalog. It greatly simplifies my current problem.
@caleb.macdonaldblack we do this a lot. sometimes you just need to store ad-hoc data.
Thanks for the response!
try
[:find (count ?b)
:with ?v
:where
[?b :bar/baz ?v]]
you’d need to use :with
somehow @caleb.macdonaldblack https://docs.datomic.com/on-prem/query.html#with
@robert-stuttaford Thanks! I gave a bad example. I could have just done a count on the entity id. But for a sum I would need to use :with and that’s what I was looking for.
That’s what I ended up with
I'm trying to register on AWS Marketplace Product Support Connection but it says that You are not currently subscribed to any products which are Product Support Connection enabled. You may return to this page to edit your support contacts after you have subscribed to a participating product.
, I checked and I'm subscribed to Datomic Cloud. Any clues about what I'm doing wrong?
@mynomoto We’re working with AWS to enable Product Support Connection - - not yet activated
@marshall Ok, thanks. The datomic cloud marketplace page mentions it, that's why I was thinking I was doing something wrong.
How big a database in Terabytes can Datomic hold without totally obliterating the 10 Billion datom threshold? After googling quite extensively, I'm struggling to see any performance reports based on actual storage size. Most estimates just describe upper bound in terms of datoms.
Hi, I am trying to investigate a high cpu usage(> 150% consistenly) on the transactor, causing timeouts for clients. Looking at the transactor logs, I see messages that look like “datomic.kv-cluster - {:event :kv-cluster/update-pod,” What does update pod mean?
Can I limit results in datalog?
@gcast The limit in pull is limited to cardinality many attributes
I see. I'm curious if query results are lazy or eager. Plain clojure functions may suffice if its lazy
That seems to work
I don’t think its lazy
Just in that example
I plan on paginating