Hello, I'm trying to extend TezExamplesBase and get a dag running on yarn (pseudo cluster mode on my host). For some reason, I'm running into class not found exception on the node Vertex failed, vertexName=v1, vertexId=vertex_1471907702278_0030_1_00, diagnostics=[Task failed, taskId=task_1471907702278_0030_1_00_000000, diagnostics=[TaskAttempt 0 failed, info=[Error: Error while running task ( failure ) : attempt_1471907702278_0030_1_00_000000_0:org.apache.tez.dag.api.TezReflectionException: Unable to load class: sample.sampletez.OnetoOne$V1Processorat org.apache.tez.common.ReflectionUtils.getClazz(ReflectionUtils.java:46)at org.apache.tez.common.ReflectionUtils.createClazzInstance(ReflectionUtils.java:87)at org.apache.tez.runtime.LogicalIOProcessorRuntimeTask.createProcessor(LogicalIOProcessorRuntimeTask.java:668)
Should I be adding my application jar somewhere so that it can get distributed ? I tried adding my jar via tezClient.addAppMasterLocalFiles() but it didn't help. What am I not doing ? thanks!Madhu