This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-07
Channels
- # aleph (1)
- # announcements (2)
- # babashka (1)
- # beginners (49)
- # calva (1)
- # cider (5)
- # clj-kondo (14)
- # cljdoc (11)
- # cljsrn (6)
- # clojure (120)
- # clojure-austin (1)
- # clojure-europe (6)
- # clojure-finland (3)
- # clojure-italy (29)
- # clojure-nl (6)
- # clojure-spec (38)
- # clojure-uk (14)
- # clojurescript (65)
- # code-reviews (8)
- # cursive (20)
- # data-science (1)
- # datascript (5)
- # datomic (57)
- # emacs (6)
- # figwheel-main (2)
- # fulcro (32)
- # funcool (1)
- # jackdaw (7)
- # jobs (3)
- # joker (7)
- # kaocha (8)
- # keechma (3)
- # nrepl (7)
- # off-topic (25)
- # quil (3)
- # re-frame (10)
- # reagent (43)
- # remote-jobs (1)
- # ring (1)
- # shadow-cljs (173)
- # sim-testing (1)
- # spacemacs (1)
- # sql (3)
- # tools-deps (34)
d/q
takes :offset
and :limit
. Is it understood that the ordering of results for the same query args and db value is stable?
the ordering of the results (regardless of query or inputs) is likely the same because of clojure’s hashing
the result is either a hash-set or a bag derived from a hash-set (when using :with), so the key order is going to be the same but arbitrary
I’m being pedantic here because a query could potentially produce non-deterministic results on repeated runs: order would not be the same. What matters is whether the result sets are equal in value across subsequent runs so that they hash the same so that the key order is the same
What is the easiest way to delete a Datomic Cloud Solo topology running in AWS? I see the instance, the S3 buckets, some lambdas. I could delete them all manually but I might miss something
hi I created a solo topology . I am trying to create some ions by following the setup here https://docs.datomic.com/cloud/ions/ions-tutorial.html#create-link
In the Target NLB dialog, choose the NLB for your Datomic Cloud system.
The NLB will selectable from a dropdown.
@meowlicious99 HTTP Direct requires a production topology system
in solo you can do: https://docs.datomic.com/cloud/ions/ions-tutorial.html#webapp use an ion with a lambda proxy for a web service
https://blog.datomic.com/ covers the rename
The “Datomic Analytics (Preview)” article? I saw the note about renaming the bastion to access gateway, but didn’t see anything about the CLI tools
I’m walking through getting set up for analytics. So do people or processes that connect to analysis need to have the Datomic Administrator policy? https://docs.datomic.com/cloud/getting-started/configure-access.html#authorize-user
Install instructions here: https://clojure.org/guides/getting_started
Sorry, I forgot which channel this was and may be misinterpreting your request.
oh I meant the cli tools mentioned in this sentence above by @marshall the cli tools now take the place of the old socks proxy script
Are default values a thing in datomic like they are in sql? If so how do I set them?
@lukenelson1298 They are not, but there is a query expression called get-else
Once again I can't work due lack of internet connection 😞
I can't understand why cognitect do not release datomic-cloud
offline jar or at least datomic-free
with a newer version (that will allow https://github.com/ComputeSoftware/datomic-client-memdb work again)
Agreed. Developing over the internet is extremely tedious and slow. My REPL sessions timeout pretty often, and eval’ing even the simplest queries/transactions will hang for unknown reasons…
I’ve seen claims like “ions are easy to test at the REPL, because they’re just functions”, but that’s really not true imo. The mismatch between what runs locally and what runs in the cloud costs me countless hours.
One of coworker asked me this why can't we do this in datomic (d/transact conn {:tx-data [[:db/add "John" :some-attribute-i-made-up-on-spot "Doe"]]})
Also :some-attribute-i-made-up-on-the-spot
is the :db/ident
of an entity. That entity wouldn’t exist in the system.