This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-11-15
Channels
- # announcements (11)
- # beginners (66)
- # boot (6)
- # clara (25)
- # cljdoc (4)
- # cljs-dev (22)
- # clojure (261)
- # clojure-dev (1)
- # clojure-europe (2)
- # clojure-italy (15)
- # clojure-losangeles (1)
- # clojure-nl (19)
- # clojure-spec (62)
- # clojure-uk (50)
- # clojurescript (12)
- # community-development (6)
- # cursive (60)
- # datomic (21)
- # emacs (2)
- # figwheel (2)
- # figwheel-main (3)
- # fulcro (2)
- # graphql (11)
- # hyperfiddle (11)
- # javascript (1)
- # jobs (6)
- # juxt (1)
- # kaocha (5)
- # keechma (2)
- # off-topic (4)
- # onyx (10)
- # pathom (7)
- # re-frame (15)
- # reagent (8)
- # remote-jobs (2)
- # ring-swagger (14)
- # shadow-cljs (35)
- # sql (22)
- # testing (9)
- # tools-deps (62)
- # vim (12)
@lutz.buech might be worth checking the code to see if it’s setting the region even if the endpoint is set. I know someone had it working with minio in the past
It turns out it doesn't have to do with regions or bucket names. Changing from localhost
to 127.0.0.1
got rid of the misleading error message. Kudos to @dave.dixon!
@lellis which computing tree are you referring to?
@lucasbradstreet all tasks of workflow. [in….out]
Reading the doc about ABS i understand that i can't control time out of a restart of an input, but this happens in my code, so how can i treat this? Or at least capture when its happens this.
hi everybody. I am trying to run this locally: https://github.com/onyx-platform/onyx-examples/tree/0.14.x/lifecycles
I have Zookeeper running via docker with: docker run --name some-zookeeper --restart always -d zookeeper -p 2181:2181
But I get a ConnectionLoss
error:
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /onyx
code: -4
path: "/onyx"
Is there something I am missing?This is the Zookeeper I am using, if it helps: https://hub.docker.com/_/zookeeper/
If I leave out -p 2181:2181
, I see:
❯ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
30e63d362ba9 zookeeper "/docker-entrypoint.…" 2 seconds ago Up 1 second 2181/tcp, 2888/tcp, 3888/tcp some-zookeeper
Running the example I now get:
❯ clj -A:run
[]
these are the relevant changes I made in core.clj:
(def env-config
{:zookeeper/address "127.0.0.1:2181"
:zookeeper/server? true
:zookeeper.server/port 2181
:onyx/tenancy-id id})
(def peer-config
{:zookeeper/address "127.0.0.1:2181"
:onyx/tenancy-id id
:onyx.peer/job-scheduler :onyx.job-scheduler/balanced
:onyx.messaging/impl :aeron
:onyx.messaging/peer-port 40200
:onyx.messaging/bind-addr "localhost"})
It turns out it doesn't have to do with regions or bucket names. Changing from localhost
to 127.0.0.1
got rid of the misleading error message. Kudos to @dave.dixon!