This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-21
Channels
- # announcements (10)
- # aws (38)
- # beginners (220)
- # calva (2)
- # cider (26)
- # clj-kondo (194)
- # cljs-dev (4)
- # clojure (190)
- # clojure-dev (7)
- # clojure-europe (3)
- # clojure-italy (6)
- # clojure-nl (4)
- # clojure-uk (8)
- # clojured (1)
- # clojurescript (29)
- # code-reviews (31)
- # community-development (9)
- # core-async (24)
- # cursive (38)
- # data-science (51)
- # datomic (52)
- # dirac (2)
- # emacs (3)
- # events (1)
- # figwheel-main (4)
- # fulcro (49)
- # graphql (13)
- # heroku (1)
- # hoplon (19)
- # immutant (3)
- # leiningen (1)
- # nrepl (59)
- # off-topic (12)
- # onyx (2)
- # pathom (51)
- # reitit (15)
- # shadow-cljs (88)
- # spacemacs (6)
- # sql (3)
- # tools-deps (107)
- # xtdb (11)
I'm using Datomic Cloud and therefore lots of AWS stuff. Does anyone know of where I can ask questions regarding AWS stuff?
ask away @brian.rogers , it’s a big room
#datomic Cloud 535-8811 now available. https://forum.datomic.com/t/datomic-cloud-535-8812/1214
#datomic 0.9.5981 now available. https://forum.datomic.com/t/datomic-0-9-5981-now-available/1213
docs for index-parallelism say: >If you have high write volumes, a transactor with plenty of CPUs to spare, and are using a scalable , you can set index-parallelism as high as 8 to speed up indexing jobs:
@jaret is index-parallelism
pre-enabled on datomic cloud with this release? Is it something cloud users should be thinking of?
and always has been
Ha thanks for answering my current and then immediate next question. See you guys at the Conj!
We have a Datomic db running in our closet that we want to host in AWS. We already have a stack set up and some db's already running in AWS. We have extracted the database from our closet server and are now looking to restore it in AWS. Can someone point me in the right direction for how we can do that? https://docs.datomic.com/on-prem/backup.html looks promising but that is for on-prem and I'm not sure that's what I need
are you moving from on-prem to cloud datomic? Not merely on-prem in closet to on-prem on aws. There’s no supported migration from on-prem to cloud systems https://docs.datomic.com/on-prem/moving-to-cloud.html
Does "no supported migration" means there is no easy-button or does it mean that it is not possible?
(on-prem to Datomic Cloud is a different thing as @U09R86PA4 mentions)
i.e. some variation of read each tx from the old db, make a new tx for it, transact it into the new cloud db
there are feature and other differences between on-prem and cloud that you will have to account for
Hi I am setting up a new datomic system in a VPC that needs to be accessed by kubernetes container running in another vpc
i followed the instructions here https://docs.datomic.com/cloud/operation/client-applications.html#vpc-peering
2019-10-21 23:02:05,824 [main] ERROR app.core - {:what :uncaught-exception, :exception #error {
:cause :server-type must be :cloud, :peer-server, or :local
:data {:cognitect.anomalies/category :cognitect.anomalies/incorrect, :cognitect.anomalies/message :server-type must be :cloud, :peer-server, or :local}
:via
[{:type java.lang.RuntimeException
:message could not start [#'spot-app.db.core/conn] due to
:at [mount.core$up$fn__385 invoke core.cljc 80]}
{:type clojure.lang.ExceptionInfo
:message :server-type must be :cloud, :peer-server, or :local
:data {:cognitect.anomalies/category :cognitect.anomalies/incorrect, :cognitect.anomalies/message :server-type must be :cloud, :peer-server, or :local}
:at [datomic.client.api.impl$incorrect invokeStatic impl.clj 42]}]
:trace
[[datomic.client.api.impl$incorrect invokeStatic impl.clj 42]
[datomic.client.api.impl$incorrect invoke impl.clj 40]
(require '[datomic.client.api :as d])
(def cfg {:server-type :ion
:region "<your AWS Region>" ;; e.g. us-east-1
:system "<system-name>"
:creds-profile "<your_aws_profile_if_not_using_the_default>"
:endpoint ".<system-name>.<region>. "
:proxy-port 8182})
(def client (d/client cfg))
since I am not using async api as suggested here https://docs.datomic.com/cloud/troubleshooting.html#async-ion