We have an oozie workflow with a shell action that needs more memory than what a map task is given by Yarn by default.
How can we give it more memory?
We have tried adding the following configuration to the action:
<configuration>
<property>
<name>mapreduce.map.memory.mb</name>
<value>6144</value> <!-- for example -->
</property>
</configuration>
We have both set this as an inline (in the workflow.xml) configuration and as a jobXml. Neither has had any effect.