This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-07-20
Channels
- # admin-announcements (15)
- # announcements (1)
- # beginners (10)
- # boot (39)
- # bristol-clojurians (2)
- # clojure (146)
- # clojure-canada (1)
- # clojure-gamedev (8)
- # clojure-italy (2)
- # clojure-japan (16)
- # clojure-korea (1)
- # clojure-poland (1)
- # clojure-russia (20)
- # clojure-spain (3)
- # clojurebridge (5)
- # clojurescript (104)
- # core-typed (2)
- # datomic (80)
- # indycljs (1)
- # jobs (1)
- # ldnclj (31)
- # off-topic (15)
- # om (21)
- # onyx (7)
- # ox (9)
- # re-frame (2)
- # reagent (16)
I was wondering if onyx has a null output plugin? One that does everything an output needs to do but does not write to anything?
@chrisn: It doesn't, no. But it would be trivial to write. Implement two multimethods write-batch
and seal-resource
, which simply return empty map.
See: https://github.com/onyx-platform/onyx/blob/master/src/onyx/plugin/core_async.clj#L82-90
@chrisn: If you want to make a repo with only that, I'd be happy to move that into the GitHub organization so others could use it too. I recall wanting the same sort of thing when I used Cascading.
But really, the solution to this is to allow leaf tasks in the workflow to be functions, and not require leaves to be outputs.
@robert-stuttaford: Did you manage to hop over your problem, or still stuck?