This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-08-28
Channels
- # aleph (1)
- # announcements (16)
- # bangalore-clj (1)
- # beginners (78)
- # cider (109)
- # clara (3)
- # cljdoc (6)
- # cljsjs (3)
- # clojure (209)
- # clojure-dev (11)
- # clojure-europe (1)
- # clojure-france (9)
- # clojure-italy (13)
- # clojure-nl (3)
- # clojure-spain (2)
- # clojure-spec (19)
- # clojure-uk (50)
- # clojurescript (41)
- # clojutre (2)
- # core-async (45)
- # cursive (2)
- # datomic (14)
- # emacs (6)
- # figwheel-main (1)
- # fulcro (101)
- # graalvm (1)
- # graphql (3)
- # jobs-discuss (3)
- # kaocha (12)
- # leiningen (8)
- # music (4)
- # off-topic (47)
- # parinfer (8)
- # pathom (17)
- # pedestal (53)
- # re-frame (47)
- # reagent (22)
- # reitit (4)
- # shadow-cljs (49)
- # tools-deps (87)
should ion-dev maven dependency be available somewhere publicly? I want to run the ion :push
as part of aws codebuild, do I need to setup my own s3 bucket as a repo
@tatut Long story short, s3-maven repo that hosts the ion-dev dep is in us-east-1 and for now is otherwise unavailable in other regions.
so if my datomic cloud is running in eu-central-1, I should run my codebuild in us-east-1…
I’ll have to try it because now I’m getting VPC endpoints do not support cross-region requests (Service: Amazon S3; Status Code: 403; Error Code: …
I’ve apparently crashed the process on my solo node (trying to develop a tx log dump for backup purposes). Is there a process for restarting that?
I see it here https://docs.datomic.com/cloud/troubleshooting.html#troubleshooting-solo
Does any body have any wisdom to share on writing tx log dumps in Cloud? I tried first using the async API in a lambda I had set up outside my datomic cloud vpc (just because I had the infrastructure in place) and was getting network interruptions ( “Specified iterator was dropped”). I assumed this had something to do with the VPC Endpoint, because I can run it fine locally through the socks proxy. So I decided to try it in an Ion. It worked OK, but I saw a precipitous decline in HeapAvailablePercent when I ran it on my production topology (0.967 to 0.384) - even when looped to call tx-range with a small number of transactions at a time.
I can fiddle with the VPC endpoint or start another compute group to run the Ion, but I was wondering if anyone has a proven way of doing this
You can’t use it in ions, but you can use it when connecting from elsewhere. At least that’s appears to be the case for me.
That’s why I started with an external lambda, because I figured the async API was the way to go.
But I’m not sure how important async is for the tx log, since you can already control chunks with the :start and :end params
Thanks for the reply @hadilsabbagh18