Skip to content

Instantly share code, notes, and snippets.

@eslick
Created February 23, 2011 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eslick/840823 to your computer and use it in GitHub Desktop.
Save eslick/840823 to your computer and use it in GitHub Desktop.
clojure-hadoop shuffle component example
;; Pseudocode example for guards in flows
(def *guard-time* [:days 7])
(defmacro with-resource-time-guard
[[name timespec inhibit?] &body ]
`(let [resource# (get-resource name)]
(cond (and ~inhibit? (resource-value resource#))
(resource-value resource#)
(or (resource-expired? resource# ~timespec)
(nil? (resource-value resource#)))
(let [new-value# (do ~@body)]
(set-resource! resource# new-value#)
new-value))))
(defmacro with-output-file
[[var output-file] & body]
(assert (symbol? var))
`(let [~var ~output-file]
~@body
~var))
(define-flow guarded-file-preprocessor [table outputBase inhibit-guard?]
(with-resource-time-guard ["MyResource" *guard-time* inhibit-guard?]
(with-output-file [dir (make-output-dir outputBase)]
(do-step file-preprocessor table dir))))
(define-flow major-flow [table output]
(do-step kmeans (guarded-file-preprocessor table *output-base* nil) output))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment