Reputation: 635
We have a mounted device on our client machine which can be accessed by both windows and Unix-environments(client machine) as a root folder(/nas_store).
We are able to do -get or -copyToLocal to our local home directories like /home/abhinay/, but unable to copy to /nas_store, got an error as
get: Operation not permitted
Can any one suggest, Any changes has to be made in hadoop config file?
Upvotes: 1
Views: 1275
Reputation: 892
Bit of a hack but here it is:
hdfs dfs -cat /folder_path/* | cat > /nas_store/file
Upvotes: 2