Member since
03-21-2017
4
Posts
0
Kudos Received
0
Solutions
02-09-2019
06:42 PM
Hi Natus, thanks for your reply. Spark would be good idea to batch load periodically. We are looking for an near real time/online solution.
... View more
05-25-2017
06:03 PM
3 Kudos
You need to add below properties in core-site.xml and restart the affected components. You can refer https://hadoop.apache.org/docs/r2.7.2/hadoop-project-dist/hadoop-common/Superusers.html for more detials. Thanks! <property>
<name>hadoop.proxyuser.oozie.hosts</name>
<value>*</value>
</property>
<property>
<name>hadoop.proxyuser.oozie.groups</name>
<value>*</value>
</property>
... View more
03-21-2017
11:01 PM
use DistCp (Distributed Copy). this is the distcp command. OR you can use Apache Nifi if you want a GUI driven solution
... View more