module Wukong::Hadoop::Overwritables
A separate module to allow easy overriding from other plugins.
Public Instance Methods
input_paths()
click to toggle source
The input paths to read from.
@return [String]
# File lib/wukong-hadoop/runner/overwritables.rb, line 10 def input_paths (settings[:input] || []) end
output_path()
click to toggle source
The output path to write to.
@return [String]
# File lib/wukong-hadoop/runner/overwritables.rb, line 17 def output_path settings[:output] end
params_to_pass()
click to toggle source
Returns the parameters to pass to invocations of `wu-local`.
This is separated out as a separate method so that it can easily be overriden by other plugins.
@return [Configliere::Param]
# File lib/wukong-hadoop/runner/overwritables.rb, line 27 def params_to_pass settings end