This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-04-23
Channels
- # beginners (8)
- # boot (87)
- # cider (16)
- # cljs-dev (1)
- # cljsrn (2)
- # clojure (27)
- # clojure-austin (2)
- # clojure-beijing (1)
- # clojure-belgium (1)
- # clojure-russia (66)
- # clojure-uk (17)
- # clojurescript (48)
- # core-typed (1)
- # cursive (3)
- # datomic (8)
- # emacs (7)
- # funcool (3)
- # hoplon (22)
- # instaparse (1)
- # jobs-discuss (4)
- # leiningen (2)
- # om (17)
- # onyx (16)
- # reactive (2)
- # reagent (7)
- # rum (2)
- # specter (1)
- # untangled (3)
> We're missing first class iteration right coud you explain what iteration means in this context?
Cyclical workflows
Being able to loop from an output back into a portion of the workflow
And accrue state locally for that loop.
hmmm ok. I was almost correct. Thanks for the clarification
is that the same meaning that spark uses in their docs?
It amounts to the same thing that they use their RDD's for, they both tackle the same kinds of problems
ah ok. Thanks! i gave a talk on data processing to my company and sort of cramed for part of it. Spark and Iterative were the last on my list and i think i gave the wrong impression 😕
How did it go otherwise?
really great! I think i got showcased the progress that has been made in the dataprocessing space in the last 15 years. The leadership had started constructing a lambda architecture and I’m hopeful their now considering some of the newer solutions (onyx, flink ,dataflow, ...). I’m trying to do my due diligence in everything i bring to the table.
The next lunch and learn (thats where we present things) i’ll be teaching them some clojure and showing them onyx
Neat'o
Hm; that makes me wonder how big you can realistically make the catalog since you want to parametrize general fns
but some of those parameters (say, a specific classifier for e.g. a bunch of neural nets or even SVM or something) are bigger than others (say, a hostname to tell you where to do your geoip lookups)
@lvh Is the concern the size of the serialized catalog in ZooKeeper?
I think the maximum size of a znode in 1 megabyte. So if the catalog, after Nippy compression, is bigger than that, it would be problematic. When sometime hits that, I'll take the time to make each catalog entry its on znode, which should permanently alleviate the problem. Easy fix.