You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2018/11/01 14:32:35 UTC

[GitHub] keith-turner commented on issue #742: How to move Accumulo table data to HDFS which has different structure

keith-turner commented on issue #742: How to move Accumulo table data to HDFS which has different structure 
URL: https://github.com/apache/accumulo/issues/742#issuecomment-435058936
 
 
   The following may work, have not tested it
   
   Copy to local
   
   ```bash
   hadoop fs -cat /tmp/table1_export/distcp.txt | xargs -I XX hadoop fs -cp XX file:///local/dir
   ```
   
   copy from local to hdfs
   
   
   ```bash
   hadoop fs -cp file:///local/dir hdfs://dest/dir
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services