I am trying to use SHDP to run a Giraph job by using GiraphRunner and its associated switches like so:

Code:
hadoop jar giraphjob.jar 
                    org.apache.giraph.GiraphRunner 
                    com.myapp.MyVertex 
                    -w  3
                    -if  com.myapp.VertexInputFormat 
                    -of  com.myapp.VertexOutputFormat 
                    -ip  inputPath
                    -op  outputPath
It is not obvious to me how to do this with <hdp:tool-runner>. Any help is appreciated.

Thanks.