onyx

FYI: alternative Onyx :onyx: chat is at <https://gitter.im/onyx-platform/onyx> ; log can be found at <https://clojurians-log.clojureverse.org/onyx/index.html>
thelittlesipper 2020-01-06T18:11:49.004900Z

Anyone have an example of a task that sends an HTTP request and then passes along the response? The workflow would be something like input from kafka -&gt; send a request to an api that does some calculations -&gt; output to db The middle portion is what Im concerned with

thelittlesipper 2020-01-06T18:12:17.005300Z

Would I have to write a custom function for the middle part or can the onyx-http plugin handle that?

kszabo 2020-01-06T18:59:32.005800Z

we are doing exactly that, you want to write an fn that takes a batch of requests, fires them off in parallel and wait for all to complete

👍 1