This is relevant:
/usr/share/aws/emr/emrfs/conf/emrfs-site.xml
This seems like a weird place, but the path to the configuration file is hardcoded in Java code. You can verify this by logging the root logger debug output to the console:
export HADOOP_ROOT_LOGGER="DEBUG,console
If a consistent view is included, the following should be specified in this file:
<property>
<name>fs.s3.consistent</name>
<value>true</value>
</property>
source
share