Reputation: 1675
I did have one Hadoop cluster with KERBEROS security and other Hadoop Cluster withous KERBEROS.
Can I copy file from KERBEROS hadoop cluster to NON KERBEROS Hadoop Cluster?
Upvotes: 0
Views: 827
Reputation: 1675
one option set up in core-site.xml: add property
<property>
<name>ipc.client.fallback-to-simple-auth-allowed</name>
<value>true</value>
</property>
other option add parameter in command:
for example
hadoop distcp -D ipc.client.fallback-to-simple-auth-allowed=true hdfs://nn1:8020/foo/bar hdfs://nn2:8020/bar/foo
Upvotes: 1