class RP::EMR::Step::SetupDebugging

Public Instance Methods

to_hash() click to toggle source
# File lib/rp/emr/step/setup_debugging.rb, line 9
def to_hash
  step.to_hash
end

Private Instance Methods

step() click to toggle source
# File lib/rp/emr/step/setup_debugging.rb, line 15
def step
  RP::EMR::Step.new(
    name: "Setup Hadoop Debugging",
    action_on_failure: action_on_failure,
    hadoop_jar_step: {
      jar: 's3://us-east-1.elasticmapreduce/libs/script-runner/script-runner.jar',
      args: ['s3://us-east-1.elasticmapreduce/libs/state-pusher/0.1/fetch'],
    }
  )
end