cascalog.cascading.conf documentation
adjust-vals
(adjust-vals & vals)
conf-merge
(conf-merge & ms)
get-version
(get-version dep)
merge-serialization-strings
(merge-serialization-strings & all)
project-conf
(project-conf)
project-merge
(project-merge & ms)
project-settings
(project-settings)
read-settings
(read-settings x)
resolve-collections
(resolve-collections v)
serialization-entry
(serialization-entry serial-vec)
set-job-conf!
(set-job-conf! amap)
stringify-keys
(stringify-keys m)
with-job-conf
macro
(with-job-conf conf & body)
Modifies the job conf for queries executed within the form. Nested
with-job-conf calls will merge configuration maps together, with
innermost calls taking precedence on conflicting keys.
with-serializations
macro
(with-serializations serial-vec & forms)
Enables the supplied serializations for queries executed within the
form. Serializations should be provided as a vector of strings or
classes, like so:
(import 'org.apache.hadoop.io.serializer.JavaSerialization)
(with-serializations [JavaSerialization]
(?<- ...))
Serializations nest; nested calls to with-serializations will merge
and unique with serializations currently specified by other calls to
`with-serializations` or `with-job-conf`.